!pip install stweet==2.0.0_rc1
Requirement already satisfied: stweet==2.0.0_rc1 in /Users/kamiltagowski/anaconda3/envs/amc/lib/python3.9/site-packages (2.0.0rc1)
Requirement already satisfied: pandas in /Users/kamiltagowski/anaconda3/envs/amc/lib/python3.9/site-packages (from stweet==2.0.0_rc1) (1.3.3)
Requirement already satisfied: arrow in /Users/kamiltagowski/anaconda3/envs/amc/lib/python3.9/site-packages (from stweet==2.0.0_rc1) (1.2.0)
Requirement already satisfied: retrying in /Users/kamiltagowski/anaconda3/envs/amc/lib/python3.9/site-packages (from stweet==2.0.0_rc1) (1.3.3)
Requirement already satisfied: requests in /Users/kamiltagowski/anaconda3/envs/amc/lib/python3.9/site-packages (from stweet==2.0.0_rc1) (2.26.0)
Requirement already satisfied: python-dateutil>=2.7.0 in /Users/kamiltagowski/anaconda3/envs/amc/lib/python3.9/site-packages (from arrow->stweet==2.0.0_rc1) (2.8.2)
Requirement already satisfied: six>=1.5 in /Users/kamiltagowski/anaconda3/envs/amc/lib/python3.9/site-packages (from python-dateutil>=2.7.0->arrow->stweet==2.0.0_rc1) (1.16.0)
Requirement already satisfied: pytz>=2017.3 in /Users/kamiltagowski/anaconda3/envs/amc/lib/python3.9/site-packages (from pandas->stweet==2.0.0_rc1) (2021.1)
Requirement already satisfied: numpy>=1.17.3 in /Users/kamiltagowski/anaconda3/envs/amc/lib/python3.9/site-packages (from pandas->stweet==2.0.0_rc1) (1.21.2)
Requirement already satisfied: certifi>=2017.4.17 in /Users/kamiltagowski/anaconda3/envs/amc/lib/python3.9/site-packages (from requests->stweet==2.0.0_rc1) (2021.5.30)
Requirement already satisfied: idna<4,>=2.5 in /Users/kamiltagowski/anaconda3/envs/amc/lib/python3.9/site-packages (from requests->stweet==2.0.0_rc1) (3.2)
Requirement already satisfied: charset-normalizer~=2.0.0 in /Users/kamiltagowski/anaconda3/envs/amc/lib/python3.9/site-packages (from requests->stweet==2.0.0_rc1) (2.0.4)
Requirement already satisfied: urllib3<1.27,>=1.21.1 in /Users/kamiltagowski/anaconda3/envs/amc/lib/python3.9/site-packages (from requests->stweet==2.0.0_rc1) (1.26.6)
import json
from pprint import pprint
with open("output_raw_search_tweets.jl", "r") as f:
    data = []
    for line in f:
        parsed_line = json.loads(line)["raw_value"]
        data.append({
            'conversation_id': parsed_line["conversation_id"],
            "created_at": parsed_line["created_at"],
            "full_text": parsed_line["full_text"]
        })
        
import pandas as pd
df = pd.DataFrame(data)
!pip install plotly
Requirement already satisfied: plotly in /Users/kamiltagowski/anaconda3/envs/amc/lib/python3.9/site-packages (5.3.1)
Requirement already satisfied: tenacity>=6.2.0 in /Users/kamiltagowski/anaconda3/envs/amc/lib/python3.9/site-packages (from plotly) (8.0.1)
Requirement already satisfied: six in /Users/kamiltagowski/anaconda3/envs/amc/lib/python3.9/site-packages (from plotly) (1.16.0)
import plotly.express as px
df["event"] = 1
import numpy as np
df["created_at"] = df["created_at"].astype(np.datetime64)
df = df.groupby([pd.Grouper(key='created_at', freq='1h')]).count().reset_index()
fig = px.line(data_frame=df, x="created_at", y="event")
fig.update_xaxes(
    rangeslider_visible=True,
    rangeselector=dict(
        buttons=list([
            dict(count=1, label="1m", step="month", stepmode="backward"),
            dict(count=6, label="6m", step="month", stepmode="backward"),
            dict(count=1, label="YTD", step="year", stepmode="todate"),
            dict(count=1, label="1y", step="year", stepmode="backward"),
            dict(step="all")
        ])
    )
)
fig.show()
import stweet as st


def try_search():
    print('#####################')
    print('### try_search start')
    print('#####################')
    search_tweets_task = st.SearchTweetsTask(all_words='#covid19')
    output_jl_tweets = st.JsonLineFileRawOutput('output_raw_search_tweets.jl')
    output_jl_users = st.JsonLineFileRawOutput('output_raw_search_users.jl')
    output_print = st.PrintRawOutput()
    st.TweetSearchRunner(search_tweets_task=search_tweets_task,
                         tweet_raw_data_outputs=[output_print, output_jl_tweets],
                         user_raw_data_outputs=[output_print, output_jl_users]).run()
    print('#####################')
    print('### try_search finish')
    print('#####################')


def try_user_scrap():
    print('#####################')
    print('### try_user_scrap start')
    print('#####################')
    user_task = st.GetUsersTask(['iga_swiatek', 'ProtasiewiczJ'])
    output_json = st.JsonLineFileRawOutput('output_raw_user.json')
    output_print = st.PrintRawOutput()
    st.GetUsersRunner(get_user_task=user_task, raw_data_outputs=[output_print, output_json]).run()
    print('#####################')
    print('### try_user_scrap finish')
    print('#####################')


def try_tweet_by_id_scrap():
    print('#####################')
    print('### try_tweet_by_id_scrap start')
    print('#####################')
    id_task = st.TweetsByIdTask('1447348840164564994')
    output_json = st.JsonLineFileRawOutput('output_raw_id.json')
    output_print = st.PrintRawOutput()
    st.TweetsByIdRunner(tweets_by_id_task=id_task,
                        raw_data_outputs=[output_print, output_json]).run()
    print('#####################')
    print('### try_tweet_by_id_scrap finish')
    print('#####################')


try_search()
try_user_scrap()
try_tweet_by_id_scrap()
#####################
### try_search start
#####################
last_scrap_zero True is_cursor False
need_guest_token True
need_guest_token False
run request RequestDetails(http_method=<HttpMethod.POST: 2>, url='https://api.twitter.com/1.1/guest/activate.json', headers={'Authorization': 'Bearer AAAAAAAAAAAAAAAAAAAAANRILgAAAAAAnNwIzUejRCOuH5E6I8xnZz4puTs%3D1Zv7ttfk8LF81IUq16cHjhLTvJu4FA33AGWWjCpTnA'}, params={}, timeout=20)
run request RequestDetails(http_method=<HttpMethod.GET: 1>, url='https://twitter.com/i/api/2/search/adaptive.json', headers={'Authorization': 'Bearer AAAAAAAAAAAAAAAAAAAAANRILgAAAAAAnNwIzUejRCOuH5E6I8xnZz4puTs%3D1Zv7ttfk8LF81IUq16cHjhLTvJu4FA33AGWWjCpTnA', 'x-guest-token': '1448607857604272138'}, params={'include_profile_interstitial_type': '1', 'include_blocking': '1', 'include_blocked_by': '1', 'include_followed_by': '1', 'include_want_retweets': '1', 'include_mute_edge': '1', 'include_can_dm': '1', 'include_can_media_tag': '1', 'skip_status': '1', 'cards_platform': 'Web-12', 'include_cards': '1', 'include_ext_alt_text': 'true', 'include_quote_count': 'true', 'include_reply_count': '1', 'tweet_mode': 'extended', 'include_entities': 'true', 'include_user_entities': 'true', 'include_ext_media_color': 'true', 'include_ext_media_availability': 'true', 'send_error_codes': 'true', 'simple_quoted_tweet': 'true', 'q': '#covid19', 'count': 20, 'query_source': 'typed_query', 'pc': '1', 'spelling_corrections': '1', 'ext': 'mediaStats,highlightedLabel,voiceInfo'}, timeout=20)
200
{"object_type": "TweetRaw", "download_datetime": "2021-10-14T13:13:22.752308+02:00", "raw_value": {"created_at": "Thu Oct 14 09:22:36 +0000 2021", "id": 1448579984700887043, "id_str": "1448579984700887043", "full_text": "Osoby powy\u017cej 80 r\u017c powinny by\u0107 zaszczepione w pierwszej kolejno\u015bci, w domu. Mogli to zrobi\u0107 studenci medycyny w ramach praktyk wakacyjnych. Ale do tego trzeba zarz\u0105dzania #pandemia.\n#koronawirus #COVID19 #ochronazdrowia", "truncated": false, "display_text_range": [0, 220], "entities": {"hashtags": [{"text": "pandemia", "indices": [172, 181]}, {"text": "koronawirus", "indices": [183, 195]}, {"text": "COVID19", "indices": [196, 204]}, {"text": "ochronazdrowia", "indices": [205, 220]}], "symbols": [], "user_mentions": [], "urls": []}, "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user_id": 1237526605108518913, "user_id_str": "1237526605108518913", "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1448578287274500116, "quoted_status_id_str": "1448578287274500116", "quoted_status_permalink": {"url": "https://t.co/MRHWhSijxb", "expanded": "https://twitter.com/tomaszlaszcz/status/1448578287274500116", "display": "twitter.com/tomaszlaszcz/s\u2026"}, "retweet_count": 1, "favorite_count": 4, "reply_count": 1, "quote_count": 0, "conversation_id": 1448579984700887043, "conversation_id_str": "1448579984700887043", "favorited": false, "retweeted": false, "lang": "pl", "supplemental_language": null}}
{"object_type": "TweetRaw", "download_datetime": "2021-10-14T13:13:22.752486+02:00", "raw_value": {"created_at": "Thu Oct 14 10:56:41 +0000 2021", "id": 1448603660922011653, "id_str": "1448603660922011653", "full_text": "Kronika czasu zarazy - dzie\u0144 14.10.2021\nLiczba nowych zakaze\u0144: 3000 (TRZY TYSI\u0104CE !)\nLiczba zgon\u00f3w: 60\n\nIV fala foliarzy i \"koronasceptyk\u00f3w\"\n\nNPS poleg\u0142 niczem Tupolew smole\u0144ski\nJeste\u015bmy w czarnej kaczej dudzie\n\n#COVID19 \n#KACZYSTAN", "truncated": false, "display_text_range": [0, 232], "entities": {"hashtags": [{"text": "COVID19", "indices": [212, 220]}, {"text": "KACZYSTAN", "indices": [222, 232]}], "symbols": [], "user_mentions": [], "urls": []}, "source": "<a href=\"https://mobile.twitter.com\" rel=\"nofollow\">Twitter Web App</a>", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user_id": 90516952, "user_id_str": "90516952", "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 6, "reply_count": 0, "quote_count": 0, "conversation_id": 1448603660922011653, "conversation_id_str": "1448603660922011653", "favorited": false, "retweeted": false, "lang": "pl", "supplemental_language": null}}
{"object_type": "TweetRaw", "download_datetime": "2021-10-14T13:13:22.752692+02:00", "raw_value": {"created_at": "Thu Oct 14 09:15:51 +0000 2021", "id": 1448578287274500116, "id_str": "1448578287274500116", "full_text": "@JacekJaworskiGd @szczepimysie Obawiam si\u0119 to \u017ce to poczatek dramatu. A efekty b\u0119d\u0105 bolesne bo mimo opowie\u015bci o przygotowaniu NPS nie zaszczepiono najbardziej nara\u017conej grupy https://t.co/VcW2e3oOSa", "truncated": false, "display_text_range": [31, 174], "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "JacekJaworskiGd", "name": "Jacek Jaworski", "id": 4703620853, "id_str": "4703620853", "indices": [0, 16]}, {"screen_name": "szczepimysie", "name": "#SzczepimySi\u0119", "id": 1346846950080081920, "id_str": "1346846950080081920", "indices": [17, 30]}], "urls": [], "media": [{"id": 1448578276021182467, "id_str": "1448578276021182467", "indices": [175, 198], "media_url": "http://pbs.twimg.com/media/FBpiRGOXIAM1A5u.png", "media_url_https": "https://pbs.twimg.com/media/FBpiRGOXIAM1A5u.png", "url": "https://t.co/VcW2e3oOSa", "display_url": "pic.twitter.com/VcW2e3oOSa", "expanded_url": "https://twitter.com/TomaszLaszcz/status/1448578287274500116/photo/1", "type": "photo", "original_info": {"width": 591, "height": 719, "focus_rects": [{"x": 0, "y": 0, "h": 331, "w": 591}, {"x": 0, "y": 0, "h": 591, "w": 591}, {"x": 0, "y": 0, "h": 674, "w": 591}, {"x": 115, "y": 0, "h": 719, "w": 360}, {"x": 0, "y": 0, "h": 719, "w": 591}]}, "sizes": {"large": {"w": 591, "h": 719, "resize": "fit"}, "medium": {"w": 591, "h": 719, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 559, "h": 680, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 1448578276021182467, "id_str": "1448578276021182467", "indices": [175, 198], "media_url": "http://pbs.twimg.com/media/FBpiRGOXIAM1A5u.png", "media_url_https": "https://pbs.twimg.com/media/FBpiRGOXIAM1A5u.png", "url": "https://t.co/VcW2e3oOSa", "display_url": "pic.twitter.com/VcW2e3oOSa", "expanded_url": "https://twitter.com/TomaszLaszcz/status/1448578287274500116/photo/1", "type": "photo", "original_info": {"width": 591, "height": 719, "focus_rects": [{"x": 0, "y": 0, "h": 331, "w": 591}, {"x": 0, "y": 0, "h": 591, "w": 591}, {"x": 0, "y": 0, "h": 674, "w": 591}, {"x": 115, "y": 0, "h": 719, "w": 360}, {"x": 0, "y": 0, "h": 719, "w": 591}]}, "sizes": {"large": {"w": 591, "h": 719, "resize": "fit"}, "medium": {"w": 591, "h": 719, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 559, "h": 680, "resize": "fit"}}, "media_key": "3_1448578276021182467", "ext_media_color": {"palette": [{"rgb": {"red": 191, "green": 218, "blue": 219}, "percentage": 92.89}, {"rgb": {"red": 108, "green": 191, "blue": 84}, "percentage": 4.74}, {"rgb": {"red": 164, "green": 214, "blue": 148}, "percentage": 1.35}, {"rgb": {"red": 156, "green": 205, "blue": 196}, "percentage": 0.65}, {"rgb": {"red": 219, "green": 104, "blue": 105}, "percentage": 0.24}]}, "ext_alt_text": null, "ext_media_availability": {"status": "available"}, "ext": {"mediaStats": {"r": "Missing", "ttl": -1}}}]}, "source": "<a href=\"https://mobile.twitter.com\" rel=\"nofollow\">Twitter Web App</a>", "in_reply_to_status_id": 1448577005189013504, "in_reply_to_status_id_str": "1448577005189013504", "in_reply_to_user_id": 4703620853, "in_reply_to_user_id_str": "4703620853", "in_reply_to_screen_name": "JacekJaworskiGd", "user_id": 361366954, "user_id_str": "361366954", "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 3, "favorite_count": 10, "reply_count": 0, "quote_count": 1, "conversation_id": 1448549934660259840, "conversation_id_str": "1448549934660259840", "favorited": false, "retweeted": false, "possibly_sensitive": false, "possibly_sensitive_editable": true, "lang": "pl", "supplemental_language": null}}
{"object_type": "TweetRaw", "download_datetime": "2021-10-14T13:13:22.752876+02:00", "raw_value": {"created_at": "Thu Oct 14 07:05:09 +0000 2021", "id": 1448545394393223170, "id_str": "1448545394393223170", "full_text": "Mieszka\u0144cy siedz\u0105 zamkni\u0119ci w domach, #COVID19 ; wi\u0119c centrum Canbrerry, Australia, opanowa\u0142y kangury; natura nie znosi pustki\ud83e\udd23 https://t.co/JgStv4xiaj", "truncated": false, "display_text_range": [0, 127], "entities": {"hashtags": [{"text": "COVID19", "indices": [38, 46]}], "symbols": [], "user_mentions": [], "urls": [], "media": [{"id": 1448545341536620544, "id_str": "1448545341536620544", "indices": [128, 151], "media_url": "http://pbs.twimg.com/media/FBpEUDtWUAADqTX.jpg", "media_url_https": "https://pbs.twimg.com/media/FBpEUDtWUAADqTX.jpg", "url": "https://t.co/JgStv4xiaj", "display_url": "pic.twitter.com/JgStv4xiaj", "expanded_url": "https://twitter.com/Tomek525/status/1448545394393223170/photo/1", "type": "photo", "original_info": {"width": 636, "height": 382, "focus_rects": [{"x": 0, "y": 0, "h": 356, "w": 636}, {"x": 254, "y": 0, "h": 382, "w": 382}, {"x": 301, "y": 0, "h": 382, "w": 335}, {"x": 429, "y": 0, "h": 382, "w": 191}, {"x": 0, "y": 0, "h": 382, "w": 636}]}, "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 636, "h": 382, "resize": "fit"}, "small": {"w": 636, "h": 382, "resize": "fit"}, "large": {"w": 636, "h": 382, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 1448545341536620544, "id_str": "1448545341536620544", "indices": [128, 151], "media_url": "http://pbs.twimg.com/media/FBpEUDtWUAADqTX.jpg", "media_url_https": "https://pbs.twimg.com/media/FBpEUDtWUAADqTX.jpg", "url": "https://t.co/JgStv4xiaj", "display_url": "pic.twitter.com/JgStv4xiaj", "expanded_url": "https://twitter.com/Tomek525/status/1448545394393223170/photo/1", "type": "photo", "original_info": {"width": 636, "height": 382, "focus_rects": [{"x": 0, "y": 0, "h": 356, "w": 636}, {"x": 254, "y": 0, "h": 382, "w": 382}, {"x": 301, "y": 0, "h": 382, "w": 335}, {"x": 429, "y": 0, "h": 382, "w": 191}, {"x": 0, "y": 0, "h": 382, "w": 636}]}, "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 636, "h": 382, "resize": "fit"}, "small": {"w": 636, "h": 382, "resize": "fit"}, "large": {"w": 636, "h": 382, "resize": "fit"}}, "media_key": "3_1448545341536620544", "ext_alt_text": null, "ext_media_availability": {"status": "available"}, "ext_media_color": {"palette": [{"rgb": {"red": 122, "green": 108, "blue": 97}, "percentage": 67.19}, {"rgb": {"red": 176, "green": 155, "blue": 134}, "percentage": 19.61}, {"rgb": {"red": 50, "green": 41, "blue": 42}, "percentage": 4.36}, {"rgb": {"red": 136, "green": 109, "blue": 75}, "percentage": 2.45}, {"rgb": {"red": 70, "green": 63, "blue": 81}, "percentage": 2.05}]}, "ext": {"mediaStats": {"r": "Missing", "ttl": -1}}}]}, "source": "<a href=\"https://mobile.twitter.com\" rel=\"nofollow\">Twitter Web App</a>", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user_id": 3978393137, "user_id_str": "3978393137", "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 4, "favorite_count": 5, "reply_count": 0, "quote_count": 0, "conversation_id": 1448545394393223170, "conversation_id_str": "1448545394393223170", "favorited": false, "retweeted": false, "possibly_sensitive": false, "possibly_sensitive_editable": true, "lang": "pl", "supplemental_language": null}}
{"object_type": "TweetRaw", "download_datetime": "2021-10-14T13:13:22.753050+02:00", "raw_value": {"created_at": "Thu Oct 14 10:25:08 +0000 2021", "id": 1448595720865472517, "id_str": "1448595720865472517", "full_text": "Nie id\u017a za stadem baran\u00f3w prowadzonym przez najemnik\u00f3w. Id\u017a za Jezusem, dobrym pasterzem wraz z jego owcami. #Jezus #Zbawienie #COVID19 #JesusChrist https://t.co/kXB6xTfCez", "truncated": false, "display_text_range": [0, 148], "entities": {"hashtags": [{"text": "Jezus", "indices": [109, 115]}, {"text": "Zbawienie", "indices": [116, 126]}, {"text": "COVID19", "indices": [127, 135]}, {"text": "JesusChrist", "indices": [136, 148]}], "symbols": [], "user_mentions": [], "urls": [], "media": [{"id": 1448595713198329858, "id_str": "1448595713198329858", "indices": [149, 172], "media_url": "http://pbs.twimg.com/media/FBpyIExXEAIb8G0.png", "media_url_https": "https://pbs.twimg.com/media/FBpyIExXEAIb8G0.png", "url": "https://t.co/kXB6xTfCez", "display_url": "pic.twitter.com/kXB6xTfCez", "expanded_url": "https://twitter.com/Mariusz_Mistrz/status/1448595720865472517/photo/1", "type": "photo", "original_info": {"width": 567, "height": 383, "focus_rects": [{"x": 0, "y": 25, "h": 318, "w": 567}, {"x": 106, "y": 0, "h": 383, "w": 383}, {"x": 129, "y": 0, "h": 383, "w": 336}, {"x": 201, "y": 0, "h": 383, "w": 192}, {"x": 0, "y": 0, "h": 383, "w": 567}]}, "sizes": {"small": {"w": 567, "h": 383, "resize": "fit"}, "large": {"w": 567, "h": 383, "resize": "fit"}, "medium": {"w": 567, "h": 383, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}}}]}, "extended_entities": {"media": [{"id": 1448595713198329858, "id_str": "1448595713198329858", "indices": [149, 172], "media_url": "http://pbs.twimg.com/media/FBpyIExXEAIb8G0.png", "media_url_https": "https://pbs.twimg.com/media/FBpyIExXEAIb8G0.png", "url": "https://t.co/kXB6xTfCez", "display_url": "pic.twitter.com/kXB6xTfCez", "expanded_url": "https://twitter.com/Mariusz_Mistrz/status/1448595720865472517/photo/1", "type": "photo", "original_info": {"width": 567, "height": 383, "focus_rects": [{"x": 0, "y": 25, "h": 318, "w": 567}, {"x": 106, "y": 0, "h": 383, "w": 383}, {"x": 129, "y": 0, "h": 383, "w": 336}, {"x": 201, "y": 0, "h": 383, "w": 192}, {"x": 0, "y": 0, "h": 383, "w": 567}]}, "sizes": {"small": {"w": 567, "h": 383, "resize": "fit"}, "large": {"w": 567, "h": 383, "resize": "fit"}, "medium": {"w": 567, "h": 383, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}}, "media_key": "3_1448595713198329858", "ext_media_color": {"palette": [{"rgb": {"red": 255, "green": 255, "blue": 255}, "percentage": 91.74}, {"rgb": {"red": 134, "green": 134, "blue": 134}, "percentage": 8.26}]}, "ext_alt_text": null, "ext_media_availability": {"status": "available"}, "ext": {"mediaStats": {"r": "Missing", "ttl": -1}}}]}, "source": "<a href=\"https://mobile.twitter.com\" rel=\"nofollow\">Twitter Web App</a>", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user_id": 1420754113906630659, "user_id_str": "1420754113906630659", "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "reply_count": 0, "quote_count": 0, "conversation_id": 1448595720865472517, "conversation_id_str": "1448595720865472517", "favorited": false, "retweeted": false, "possibly_sensitive": false, "possibly_sensitive_editable": true, "lang": "pl", "supplemental_language": null}}
{"object_type": "TweetRaw", "download_datetime": "2021-10-14T13:13:22.753166+02:00", "raw_value": {"created_at": "Thu Oct 14 08:31:12 +0000 2021", "id": 1448567048842383361, "id_str": "1448567048842383361", "full_text": "Mamy 3000 nowych i potwierdzonych przypadk\u00f3w zaka\u017cenia #koronawirus z wojew\u00f3dztw: lubelskiego (671), mazowieckiego (539), podlaskiego (313), \u0142\u00f3dzkiego (167), pomorskiego (161), zachodniopomorskiego (155), podkarpackiego (154), \u015bl\u0105skiego (143), wielkopolskiego (140),", "truncated": false, "display_text_range": [0, 266], "entities": {"hashtags": [{"text": "koronawirus", "indices": [55, 67]}], "symbols": [], "user_mentions": [], "urls": []}, "source": "<a href=\"https://mobile.twitter.com\" rel=\"nofollow\">Twitter Web App</a>", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user_id": 462886126, "user_id_str": "462886126", "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 111, "favorite_count": 838, "reply_count": 219, "quote_count": 134, "conversation_id": 1448567048842383361, "conversation_id_str": "1448567048842383361", "favorited": false, "retweeted": false, "lang": "pl", "supplemental_language": null, "self_thread": {"id": 1448567048842383361, "id_str": "1448567048842383361"}}}
{"object_type": "TweetRaw", "download_datetime": "2021-10-14T13:13:22.753298+02:00", "raw_value": {"created_at": "Thu Oct 14 08:59:32 +0000 2021", "id": 1448574182393004033, "id_str": "1448574182393004033", "full_text": "Zaj\u0119te respiratory +49 proc. od pocz\u0105tku X.\nDzi\u015b 3000 zaka\u017ce\u0144, 60 zgon\u00f3w \n#COVID19 https://t.co/nDiEtPwQRv", "truncated": false, "display_text_range": [0, 82], "entities": {"hashtags": [{"text": "COVID19", "indices": [74, 82]}], "symbols": [], "user_mentions": [], "urls": [], "media": [{"id": 1448574033155473409, "id_str": "1448574033155473409", "indices": [83, 106], "media_url": "http://pbs.twimg.com/media/FBpeaIUWQAEbLMy.jpg", "media_url_https": "https://pbs.twimg.com/media/FBpeaIUWQAEbLMy.jpg", "url": "https://t.co/nDiEtPwQRv", "display_url": "pic.twitter.com/nDiEtPwQRv", "expanded_url": "https://twitter.com/LUKASZKIJEK/status/1448574182393004033/photo/1", "type": "photo", "original_info": {"width": 614, "height": 202, "focus_rects": [{"x": 253, "y": 0, "h": 202, "w": 361}, {"x": 344, "y": 0, "h": 202, "w": 202}, {"x": 357, "y": 0, "h": 202, "w": 177}, {"x": 395, "y": 0, "h": 202, "w": 101}, {"x": 0, "y": 0, "h": 202, "w": 614}]}, "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 614, "h": 202, "resize": "fit"}, "medium": {"w": 614, "h": 202, "resize": "fit"}, "large": {"w": 614, "h": 202, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 1448574033155473409, "id_str": "1448574033155473409", "indices": [83, 106], "media_url": "http://pbs.twimg.com/media/FBpeaIUWQAEbLMy.jpg", "media_url_https": "https://pbs.twimg.com/media/FBpeaIUWQAEbLMy.jpg", "url": "https://t.co/nDiEtPwQRv", "display_url": "pic.twitter.com/nDiEtPwQRv", "expanded_url": "https://twitter.com/LUKASZKIJEK/status/1448574182393004033/photo/1", "type": "photo", "original_info": {"width": 614, "height": 202, "focus_rects": [{"x": 253, "y": 0, "h": 202, "w": 361}, {"x": 344, "y": 0, "h": 202, "w": 202}, {"x": 357, "y": 0, "h": 202, "w": 177}, {"x": 395, "y": 0, "h": 202, "w": 101}, {"x": 0, "y": 0, "h": 202, "w": 614}]}, "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 614, "h": 202, "resize": "fit"}, "medium": {"w": 614, "h": 202, "resize": "fit"}, "large": {"w": 614, "h": 202, "resize": "fit"}}, "media_key": "3_1448574033155473409", "ext_alt_text": null, "ext_media_availability": {"status": "available"}, "ext_media_color": {"palette": [{"rgb": {"red": 12, "green": 68, "blue": 130}, "percentage": 55.32}, {"rgb": {"red": 17, "green": 125, "blue": 187}, "percentage": 32.92}, {"rgb": {"red": 154, "green": 190, "blue": 211}, "percentage": 11.22}, {"rgb": {"red": 94, "green": 121, "blue": 153}, "percentage": 0.45}]}, "ext": {"mediaStats": {"r": "Missing", "ttl": -1}}}]}, "source": "<a href=\"https://mobile.twitter.com\" rel=\"nofollow\">Twitter Web App</a>", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user_id": 399667344, "user_id_str": "399667344", "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 1, "favorite_count": 0, "reply_count": 1, "quote_count": 0, "conversation_id": 1448574182393004033, "conversation_id_str": "1448574182393004033", "favorited": false, "retweeted": false, "possibly_sensitive": false, "possibly_sensitive_editable": true, "lang": "pl", "supplemental_language": null}}
{"object_type": "TweetRaw", "download_datetime": "2021-10-14T13:13:22.753435+02:00", "raw_value": {"created_at": "Wed Oct 13 21:14:18 +0000 2021", "id": 1448396704177344517, "id_str": "1448396704177344517", "full_text": "13 pa\u017adziernika #Dzie\u0144RatownictwaMedycznego \nDzi\u0119kuj\u0119 wszystkim pracownikom Stacji Pogotowia Ratunkowego za Wasz\u0105 prac\u0119 i zaanga\u017cowanie...przykre jest, \u017ce od lat jeste\u015bcie niedoceniani i \u017ale wynagradzani. Wygrali\u015bcie i wygrywacie codziennie walk\u0119 z #COVID19 https://t.co/ayY7RLanOi", "truncated": false, "display_text_range": [0, 257], "entities": {"hashtags": [{"text": "Dzie\u0144RatownictwaMedycznego", "indices": [16, 43]}, {"text": "COVID19", "indices": [249, 257]}], "symbols": [], "user_mentions": [], "urls": [], "media": [{"id": 1448396424752898051, "id_str": "1448396424752898051", "indices": [258, 281], "media_url": "http://pbs.twimg.com/media/FBm839dXoAM5tUZ.jpg", "media_url_https": "https://pbs.twimg.com/media/FBm839dXoAM5tUZ.jpg", "url": "https://t.co/ayY7RLanOi", "display_url": "pic.twitter.com/ayY7RLanOi", "expanded_url": "https://twitter.com/kieltyka_k/status/1448396704177344517/photo/1", "type": "photo", "original_info": {"width": 1920, "height": 1080, "focus_rects": [{"x": 0, "y": 0, "h": 1075, "w": 1920}, {"x": 468, "y": 0, "h": 1080, "w": 1080}, {"x": 535, "y": 0, "h": 1080, "w": 947}, {"x": 738, "y": 0, "h": 1080, "w": 540}, {"x": 0, "y": 0, "h": 1080, "w": 1920}]}, "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 1200, "h": 675, "resize": "fit"}, "small": {"w": 680, "h": 383, "resize": "fit"}, "large": {"w": 1920, "h": 1080, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 1448396424752898051, "id_str": "1448396424752898051", "indices": [258, 281], "media_url": "http://pbs.twimg.com/media/FBm839dXoAM5tUZ.jpg", "media_url_https": "https://pbs.twimg.com/media/FBm839dXoAM5tUZ.jpg", "url": "https://t.co/ayY7RLanOi", "display_url": "pic.twitter.com/ayY7RLanOi", "expanded_url": "https://twitter.com/kieltyka_k/status/1448396704177344517/photo/1", "type": "photo", "original_info": {"width": 1920, "height": 1080, "focus_rects": [{"x": 0, "y": 0, "h": 1075, "w": 1920}, {"x": 468, "y": 0, "h": 1080, "w": 1080}, {"x": 535, "y": 0, "h": 1080, "w": 947}, {"x": 738, "y": 0, "h": 1080, "w": 540}, {"x": 0, "y": 0, "h": 1080, "w": 1920}]}, "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 1200, "h": 675, "resize": "fit"}, "small": {"w": 680, "h": 383, "resize": "fit"}, "large": {"w": 1920, "h": 1080, "resize": "fit"}}, "media_key": "3_1448396424752898051", "ext_media_color": {"palette": [{"rgb": {"red": 200, "green": 93, "blue": 79}, "percentage": 32.87}, {"rgb": {"red": 144, "green": 156, "blue": 167}, "percentage": 19.61}, {"rgb": {"red": 30, "green": 54, "blue": 80}, "percentage": 13.82}, {"rgb": {"red": 189, "green": 194, "blue": 79}, "percentage": 6.52}, {"rgb": {"red": 249, "green": 90, "blue": 48}, "percentage": 6.52}]}, "ext_alt_text": null, "ext_media_availability": {"status": "available"}, "ext": {"mediaStats": {"r": "Missing", "ttl": -1}}}]}, "source": "<a href=\"https://mobile.twitter.com\" rel=\"nofollow\">Twitter Web App</a>", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user_id": 1354930607567085569, "user_id_str": "1354930607567085569", "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 1, "favorite_count": 1, "reply_count": 0, "quote_count": 0, "conversation_id": 1448396704177344517, "conversation_id_str": "1448396704177344517", "favorited": false, "retweeted": false, "possibly_sensitive": false, "possibly_sensitive_editable": true, "lang": "pl", "supplemental_language": null}}
{"object_type": "TweetRaw", "download_datetime": "2021-10-14T13:13:22.753566+02:00", "raw_value": {"created_at": "Thu Oct 14 08:09:23 +0000 2021", "id": 1448561559068975105, "id_str": "1448561559068975105", "full_text": "To nie #covid19, a fala zaka\u017ce\u0144 wirusem RSV u dzieci jest dla nas wyzwaniem - apeluj\u0105 lekarze. Wszystko przez lockdown, maseczki i zamykanie dzieci w domach na nauce zdalnej. Adam @a_niedzielski we\u017a no mi si\u0119 tutaj jako\u015b odnie\u015b do tego. https://t.co/lw96GCfRXr", "truncated": false, "display_text_range": [0, 236], "entities": {"hashtags": [{"text": "covid19", "indices": [7, 15]}], "symbols": [], "user_mentions": [{"screen_name": "a_niedzielski", "name": "Adam Niedzielski", "id": 1377800274, "id_str": "1377800274", "indices": [180, 194]}], "urls": [], "media": [{"id": 1448561556971794436, "id_str": "1448561556971794436", "indices": [237, 260], "media_url": "http://pbs.twimg.com/media/FBpTD66XMAQl7gk.jpg", "media_url_https": "https://pbs.twimg.com/media/FBpTD66XMAQl7gk.jpg", "url": "https://t.co/lw96GCfRXr", "display_url": "pic.twitter.com/lw96GCfRXr", "expanded_url": "https://twitter.com/PoPrawnik2/status/1448561559068975105/photo/1", "type": "photo", "original_info": {"width": 720, "height": 219, "focus_rects": [{"x": 147, "y": 0, "h": 219, "w": 391}, {"x": 233, "y": 0, "h": 219, "w": 219}, {"x": 246, "y": 0, "h": 219, "w": 192}, {"x": 287, "y": 0, "h": 219, "w": 110}, {"x": 0, "y": 0, "h": 219, "w": 720}]}, "sizes": {"small": {"w": 680, "h": 207, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 720, "h": 219, "resize": "fit"}, "medium": {"w": 720, "h": 219, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 1448561556971794436, "id_str": "1448561556971794436", "indices": [237, 260], "media_url": "http://pbs.twimg.com/media/FBpTD66XMAQl7gk.jpg", "media_url_https": "https://pbs.twimg.com/media/FBpTD66XMAQl7gk.jpg", "url": "https://t.co/lw96GCfRXr", "display_url": "pic.twitter.com/lw96GCfRXr", "expanded_url": "https://twitter.com/PoPrawnik2/status/1448561559068975105/photo/1", "type": "photo", "original_info": {"width": 720, "height": 219, "focus_rects": [{"x": 147, "y": 0, "h": 219, "w": 391}, {"x": 233, "y": 0, "h": 219, "w": 219}, {"x": 246, "y": 0, "h": 219, "w": 192}, {"x": 287, "y": 0, "h": 219, "w": 110}, {"x": 0, "y": 0, "h": 219, "w": 720}]}, "sizes": {"small": {"w": 680, "h": 207, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 720, "h": 219, "resize": "fit"}, "medium": {"w": 720, "h": 219, "resize": "fit"}}, "media_key": "3_1448561556971794436", "ext_alt_text": null, "ext_media_availability": {"status": "available"}, "ext_media_color": {"palette": [{"rgb": {"red": 255, "green": 255, "blue": 255}, "percentage": 89.22}, {"rgb": {"red": 104, "green": 119, "blue": 167}, "percentage": 10.66}, {"rgb": {"red": 50, "green": 71, "blue": 139}, "percentage": 0.12}]}, "ext": {"mediaStats": {"r": "Missing", "ttl": -1}}}]}, "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user_id": 976173218309509120, "user_id_str": "976173218309509120", "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 15, "favorite_count": 46, "reply_count": 5, "quote_count": 0, "conversation_id": 1448561559068975105, "conversation_id_str": "1448561559068975105", "favorited": false, "retweeted": false, "possibly_sensitive": false, "possibly_sensitive_editable": true, "lang": "pl", "supplemental_language": null}}
{"object_type": "TweetRaw", "download_datetime": "2021-10-14T13:13:22.753704+02:00", "raw_value": {"created_at": "Thu Oct 14 09:44:47 +0000 2021", "id": 1448585569102188545, "id_str": "1448585569102188545", "full_text": "W ca\u0142ej UE na koniec II kwarta\u0142u 2021 roku nadal pracowa\u0142o o 2,98 mln mniej os\u00f3b ni\u017c przed kryzysem #COVID19\n\nW\u015br\u00f3d kraj\u00f3w \ud83c\uddea\ud83c\uddfa najwy\u017csze wzrosty zatrudnienia wyst\u0105pi\u0142y:\n\ud83c\uddf3\ud83c\uddf1 +222 tys.\n\ud83c\uddf5\ud83c\uddf1 +150 tys.\n\ud83c\udded\ud83c\uddfa +122 tys.\n\nNajwi\u0119ksze spadki zatrudnienia:\n\ud83c\udde9\ud83c\uddea -1012 tys.\n\ud83c\uddee\ud83c\uddf9 -826 tys.\n\ud83c\uddf7\ud83c\uddf4 -738 tys. https://t.co/QizzzkJmFH", "truncated": false, "display_text_range": [0, 279], "entities": {"hashtags": [{"text": "COVID19", "indices": [100, 108]}], "symbols": [], "user_mentions": [], "urls": [], "media": [{"id": 1448583356472565763, "id_str": "1448583356472565763", "indices": [280, 303], "media_url": "http://pbs.twimg.com/media/FBpm40YXIAMZ_62.jpg", "media_url_https": "https://pbs.twimg.com/media/FBpm40YXIAMZ_62.jpg", "url": "https://t.co/QizzzkJmFH", "display_url": "pic.twitter.com/QizzzkJmFH", "expanded_url": "https://twitter.com/KubisiakA/status/1448585569102188545/photo/1", "type": "photo", "original_info": {"width": 1128, "height": 643, "focus_rects": [{"x": 0, "y": 0, "h": 632, "w": 1128}, {"x": 327, "y": 0, "h": 643, "w": 643}, {"x": 366, "y": 0, "h": 643, "w": 564}, {"x": 487, "y": 0, "h": 643, "w": 322}, {"x": 0, "y": 0, "h": 643, "w": 1128}]}, "sizes": {"large": {"w": 1128, "h": 643, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 680, "h": 388, "resize": "fit"}, "medium": {"w": 1128, "h": 643, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 1448583356472565763, "id_str": "1448583356472565763", "indices": [280, 303], "media_url": "http://pbs.twimg.com/media/FBpm40YXIAMZ_62.jpg", "media_url_https": "https://pbs.twimg.com/media/FBpm40YXIAMZ_62.jpg", "url": "https://t.co/QizzzkJmFH", "display_url": "pic.twitter.com/QizzzkJmFH", "expanded_url": "https://twitter.com/KubisiakA/status/1448585569102188545/photo/1", "type": "photo", "original_info": {"width": 1128, "height": 643, "focus_rects": [{"x": 0, "y": 0, "h": 632, "w": 1128}, {"x": 327, "y": 0, "h": 643, "w": 643}, {"x": 366, "y": 0, "h": 643, "w": 564}, {"x": 487, "y": 0, "h": 643, "w": 322}, {"x": 0, "y": 0, "h": 643, "w": 1128}]}, "sizes": {"large": {"w": 1128, "h": 643, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 680, "h": 388, "resize": "fit"}, "medium": {"w": 1128, "h": 643, "resize": "fit"}}, "media_key": "3_1448583356472565763", "ext_alt_text": null, "ext_media_availability": {"status": "available"}, "ext_media_color": {"palette": [{"rgb": {"red": 255, "green": 255, "blue": 255}, "percentage": 85.36}, {"rgb": {"red": 178, "green": 105, "blue": 49}, "percentage": 4.29}, {"rgb": {"red": 214, "green": 20, "blue": 13}, "percentage": 3.59}, {"rgb": {"red": 144, "green": 142, "blue": 64}, "percentage": 2.84}, {"rgb": {"red": 238, "green": 167, "blue": 165}, "percentage": 1.02}]}, "ext": {"mediaStats": {"r": "Missing", "ttl": -1}}}]}, "source": "<a href=\"https://mobile.twitter.com\" rel=\"nofollow\">Twitter Web App</a>", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user_id": 2555407237, "user_id_str": "2555407237", "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1448580263395663874, "quoted_status_id_str": "1448580263395663874", "quoted_status_permalink": {"url": "https://t.co/UemcZdGpoO", "expanded": "https://twitter.com/KubisiakA/status/1448580263395663874", "display": "twitter.com/KubisiakA/stat\u2026"}, "retweet_count": 10, "favorite_count": 18, "reply_count": 1, "quote_count": 1, "conversation_id": 1448585569102188545, "conversation_id_str": "1448585569102188545", "favorited": false, "retweeted": false, "possibly_sensitive": false, "possibly_sensitive_editable": true, "lang": "pl", "supplemental_language": null}}
{"object_type": "TweetRaw", "download_datetime": "2021-10-14T13:13:22.753841+02:00", "raw_value": {"created_at": "Thu Oct 14 10:15:33 +0000 2021", "id": 1448593310847836167, "id_str": "1448593310847836167", "full_text": "Analiza \u015brednich ze \u015brednich 7-dniowych przyrost\u00f3w zaka\u017ce\u0144 Covid-19 w wojew\u00f3dztwach do 14 pa\u017adziernika 2021.\n#pandemia #Covid19 #ModelKOR\n#Polska https://t.co/LvMHvo7Yu6", "truncated": false, "display_text_range": [0, 145], "entities": {"hashtags": [{"text": "pandemia", "indices": [109, 118]}, {"text": "Covid19", "indices": [119, 127]}, {"text": "ModelKOR", "indices": [128, 137]}, {"text": "Polska", "indices": [138, 145]}], "symbols": [], "user_mentions": [], "urls": [], "media": [{"id": 1448593191901536259, "id_str": "1448593191901536259", "indices": [146, 169], "media_url": "http://pbs.twimg.com/media/FBpv1UNXIAMPHLd.png", "media_url_https": "https://pbs.twimg.com/media/FBpv1UNXIAMPHLd.png", "url": "https://t.co/LvMHvo7Yu6", "display_url": "pic.twitter.com/LvMHvo7Yu6", "expanded_url": "https://twitter.com/mariog5tw/status/1448593310847836167/photo/1", "type": "photo", "original_info": {"width": 1751, "height": 915, "focus_rects": [{"x": 14, "y": 0, "h": 915, "w": 1634}, {"x": 374, "y": 0, "h": 915, "w": 915}, {"x": 430, "y": 0, "h": 915, "w": 803}, {"x": 602, "y": 0, "h": 915, "w": 458}, {"x": 0, "y": 0, "h": 915, "w": 1751}]}, "sizes": {"small": {"w": 680, "h": 355, "resize": "fit"}, "medium": {"w": 1200, "h": 627, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 1751, "h": 915, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 1448593191901536259, "id_str": "1448593191901536259", "indices": [146, 169], "media_url": "http://pbs.twimg.com/media/FBpv1UNXIAMPHLd.png", "media_url_https": "https://pbs.twimg.com/media/FBpv1UNXIAMPHLd.png", "url": "https://t.co/LvMHvo7Yu6", "display_url": "pic.twitter.com/LvMHvo7Yu6", "expanded_url": "https://twitter.com/mariog5tw/status/1448593310847836167/photo/1", "type": "photo", "original_info": {"width": 1751, "height": 915, "focus_rects": [{"x": 14, "y": 0, "h": 915, "w": 1634}, {"x": 374, "y": 0, "h": 915, "w": 915}, {"x": 430, "y": 0, "h": 915, "w": 803}, {"x": 602, "y": 0, "h": 915, "w": 458}, {"x": 0, "y": 0, "h": 915, "w": 1751}]}, "sizes": {"small": {"w": 680, "h": 355, "resize": "fit"}, "medium": {"w": 1200, "h": 627, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 1751, "h": 915, "resize": "fit"}}, "media_key": "3_1448593191901536259", "ext_alt_text": null, "ext_media_availability": {"status": "available"}, "ext_media_color": {"palette": [{"rgb": {"red": 253, "green": 252, "blue": 253}, "percentage": 90.35}, {"rgb": {"red": 222, "green": 223, "blue": 255}, "percentage": 3.18}, {"rgb": {"red": 144, "green": 144, "blue": 255}, "percentage": 1.33}, {"rgb": {"red": 193, "green": 236, "blue": 244}, "percentage": 1.1}, {"rgb": {"red": 234, "green": 181, "blue": 192}, "percentage": 0.7}]}, "ext": {"mediaStats": {"r": "Missing", "ttl": -1}}}]}, "source": "<a href=\"https://mobile.twitter.com\" rel=\"nofollow\">Twitter Web App</a>", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user_id": 2780457368, "user_id_str": "2780457368", "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 3, "reply_count": 0, "quote_count": 0, "conversation_id": 1448593310847836167, "conversation_id_str": "1448593310847836167", "favorited": false, "retweeted": false, "possibly_sensitive": false, "possibly_sensitive_editable": true, "lang": "pl", "supplemental_language": null}}
{"object_type": "TweetRaw", "download_datetime": "2021-10-14T13:13:22.754083+02:00", "raw_value": {"created_at": "Thu Oct 14 07:56:40 +0000 2021", "id": 1448558360719204353, "id_str": "1448558360719204353", "full_text": "Wydaje si\u0119, \u017ce ci\u0105gle dowiadujemy si\u0119 czego\u015b nowego o nowym wirusie. @Reuters podaje, \u017ce delta nie jest bardziej zaka\u017ana dla dzieci ni\u017c inne warianty, a przechorowanie #COVID19 daje wi\u0119ksza odporno\u015b\u0107 ni\u017c szczepienie. (mo\u017ce interesuj\u0105ce dla @MZ_GOV_PL ?) https://t.co/0oTxLLqoOV", "truncated": false, "display_text_range": [0, 277], "entities": {"hashtags": [{"text": "COVID19", "indices": [168, 176]}], "symbols": [], "user_mentions": [{"screen_name": "Reuters", "name": "Reuters", "id": 1652541, "id_str": "1652541", "indices": [69, 77]}, {"screen_name": "MZ_GOV_PL", "name": "Ministerstwo Zdrowia", "id": 462886126, "id_str": "462886126", "indices": [240, 250]}], "urls": [{"url": "https://t.co/0oTxLLqoOV", "expanded_url": "https://www.reuters.com/business/healthcare-pharmaceuticals/delta-does-not-appear-make-children-sicker-secondary-immune-response-stronger-2021-10-08/", "display_url": "reuters.com/business/healt\u2026", "indices": [254, 277]}]}, "source": "<a href=\"https://mobile.twitter.com\" rel=\"nofollow\">Twitter Web App</a>", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user_id": 130081074, "user_id_str": "130081074", "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "reply_count": 0, "quote_count": 0, "conversation_id": 1448558360719204353, "conversation_id_str": "1448558360719204353", "favorited": false, "retweeted": false, "possibly_sensitive": false, "possibly_sensitive_editable": true, "card": {"name": "summary_large_image", "url": "https://t.co/0oTxLLqoOV", "card_type_url": "http://card-type-url-is-deprecated.invalid", "binding_values": {"vanity_url": {"type": "STRING", "string_value": "reuters.com", "scribe_key": "vanity_url"}, "domain": {"type": "STRING", "string_value": "www.reuters.com"}, "creator": {"type": "USER", "user_value": {"id_str": "1652541", "path": []}}, "site": {"type": "USER", "user_value": {"id_str": "1652541", "path": []}, "scribe_key": "publisher_id"}, "title": {"type": "STRING", "string_value": "Delta does not appear to make children sicker; Secondary immune response stronger after infection..."}, "summary_photo_image_alt_text": {"type": "STRING", "string_value": "A girl wearing a protective face mask to prevent contracting the coronavirus disease (COVID-19) rides a toy kick scooter at a park in Seoul, South Korea, April 3, 2020. REUTERS/Heo Ran"}, "photo_image_full_size_alt_text": {"type": "STRING", "string_value": "A girl wearing a protective face mask to prevent contracting the coronavirus disease (COVID-19) rides a toy kick scooter at a park in Seoul, South Korea, April 3, 2020. REUTERS/Heo Ran"}, "description": {"type": "STRING", "string_value": "The following is a summary of some recent studies on COVID-19. They include research that warrants further study to corroborate the findings and that have yet to be certified by peer review."}, "thumbnail_image_small": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1446554025696976902/g11TzJdk?format=jpg&name=144x144", "width": 144, "height": 75, "alt": "A girl wearing a protective face mask to prevent contracting the coronavirus disease (COVID-19) rides a toy kick scooter at a park in Seoul, South Korea, April 3, 2020. REUTERS/Heo Ran"}}, "thumbnail_image": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1446554025696976902/g11TzJdk?format=jpg&name=280x150", "width": 280, "height": 147, "alt": "A girl wearing a protective face mask to prevent contracting the coronavirus disease (COVID-19) rides a toy kick scooter at a park in Seoul, South Korea, April 3, 2020. REUTERS/Heo Ran"}}, "thumbnail_image_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1446554025696976902/g11TzJdk?format=jpg&name=600x600", "width": 600, "height": 314, "alt": "A girl wearing a protective face mask to prevent contracting the coronavirus disease (COVID-19) rides a toy kick scooter at a park in Seoul, South Korea, April 3, 2020. REUTERS/Heo Ran"}}, "thumbnail_image_x_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1446554025696976902/g11TzJdk?format=png&name=2048x2048_2_exp", "width": 1200, "height": 628, "alt": "A girl wearing a protective face mask to prevent contracting the coronavirus disease (COVID-19) rides a toy kick scooter at a park in Seoul, South Korea, April 3, 2020. REUTERS/Heo Ran"}}, "thumbnail_image_original": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1446554025696976902/g11TzJdk?format=jpg&name=orig", "width": 1200, "height": 628, "alt": "A girl wearing a protective face mask to prevent contracting the coronavirus disease (COVID-19) rides a toy kick scooter at a park in Seoul, South Korea, April 3, 2020. REUTERS/Heo Ran"}}, "summary_photo_image_small": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1446554025696976902/g11TzJdk?format=jpg&name=386x202", "width": 386, "height": 202, "alt": "A girl wearing a protective face mask to prevent contracting the coronavirus disease (COVID-19) rides a toy kick scooter at a park in Seoul, South Korea, April 3, 2020. REUTERS/Heo Ran"}}, "summary_photo_image": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1446554025696976902/g11TzJdk?format=jpg&name=600x314", "width": 600, "height": 314, "alt": "A girl wearing a protective face mask to prevent contracting the coronavirus disease (COVID-19) rides a toy kick scooter at a park in Seoul, South Korea, April 3, 2020. REUTERS/Heo Ran"}}, "summary_photo_image_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1446554025696976902/g11TzJdk?format=jpg&name=800x419", "width": 800, "height": 419, "alt": "A girl wearing a protective face mask to prevent contracting the coronavirus disease (COVID-19) rides a toy kick scooter at a park in Seoul, South Korea, April 3, 2020. REUTERS/Heo Ran"}}, "summary_photo_image_x_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1446554025696976902/g11TzJdk?format=png&name=2048x2048_2_exp", "width": 1200, "height": 628, "alt": "A girl wearing a protective face mask to prevent contracting the coronavirus disease (COVID-19) rides a toy kick scooter at a park in Seoul, South Korea, April 3, 2020. REUTERS/Heo Ran"}}, "summary_photo_image_original": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1446554025696976902/g11TzJdk?format=jpg&name=orig", "width": 1200, "height": 628, "alt": "A girl wearing a protective face mask to prevent contracting the coronavirus disease (COVID-19) rides a toy kick scooter at a park in Seoul, South Korea, April 3, 2020. REUTERS/Heo Ran"}}, "photo_image_full_size_small": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1446554025696976902/g11TzJdk?format=jpg&name=386x202", "width": 386, "height": 202, "alt": "A girl wearing a protective face mask to prevent contracting the coronavirus disease (COVID-19) rides a toy kick scooter at a park in Seoul, South Korea, April 3, 2020. REUTERS/Heo Ran"}}, "photo_image_full_size": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1446554025696976902/g11TzJdk?format=jpg&name=600x314", "width": 600, "height": 314, "alt": "A girl wearing a protective face mask to prevent contracting the coronavirus disease (COVID-19) rides a toy kick scooter at a park in Seoul, South Korea, April 3, 2020. REUTERS/Heo Ran"}}, "photo_image_full_size_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1446554025696976902/g11TzJdk?format=jpg&name=800x419", "width": 800, "height": 419, "alt": "A girl wearing a protective face mask to prevent contracting the coronavirus disease (COVID-19) rides a toy kick scooter at a park in Seoul, South Korea, April 3, 2020. REUTERS/Heo Ran"}}, "photo_image_full_size_x_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1446554025696976902/g11TzJdk?format=png&name=2048x2048_2_exp", "width": 1200, "height": 628, "alt": "A girl wearing a protective face mask to prevent contracting the coronavirus disease (COVID-19) rides a toy kick scooter at a park in Seoul, South Korea, April 3, 2020. REUTERS/Heo Ran"}}, "photo_image_full_size_original": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1446554025696976902/g11TzJdk?format=jpg&name=orig", "width": 1200, "height": 628, "alt": "A girl wearing a protective face mask to prevent contracting the coronavirus disease (COVID-19) rides a toy kick scooter at a park in Seoul, South Korea, April 3, 2020. REUTERS/Heo Ran"}}, "card_url": {"type": "STRING", "string_value": "https://t.co/0oTxLLqoOV", "scribe_key": "card_url"}}, "users": {"1652541": {"id": 1652541, "id_str": "1652541", "name": "Reuters", "screen_name": "Reuters", "location": "Around the world", "description": "Top and breaking news, pictures and videos from Reuters. For more breaking business news, follow @ReutersBiz.", "url": "http://t.co/BmHxhkm3Mh", "entities": {"url": {"urls": [{"url": "http://t.co/BmHxhkm3Mh", "expanded_url": "http://www.reuters.com", "display_url": "reuters.com", "indices": [0, 22]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 23896522, "fast_followers_count": 0, "normal_followers_count": 23896522, "friends_count": 1173, "listed_count": 129407, "created_at": "Tue Mar 20 17:46:05 +0000 2007", "favourites_count": 753, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": true, "statuses_count": 760763, "media_count": 544496, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": true, "profile_background_color": "444444", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1194751949821939712/3VBu4_Sa_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1194751949821939712/3VBu4_Sa_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1652541/1573687397", "profile_image_extensions_media_color": {"palette": [{"rgb": {"red": 255, "green": 255, "blue": 255}, "percentage": 91.06}, {"rgb": {"red": 247, "green": 135, "blue": 21}, "percentage": 3.05}, {"rgb": {"red": 108, "green": 108, "blue": 108}, "percentage": 2.94}, {"rgb": {"red": 246, "green": 206, "blue": 159}, "percentage": 2.2}, {"rgb": {"red": 241, "green": 171, "blue": 99}, "percentage": 0.7}]}, "profile_image_extensions_alt_text": null, "profile_image_extensions_media_availability": null, "profile_image_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_banner_extensions_media_color": {"palette": [{"rgb": {"red": 81, "green": 67, "blue": 65}, "percentage": 38.41}, {"rgb": {"red": 254, "green": 176, "blue": 136}, "percentage": 25.62}, {"rgb": {"red": 138, "green": 113, "blue": 111}, "percentage": 14.19}, {"rgb": {"red": 174, "green": 185, "blue": 221}, "percentage": 6.96}, {"rgb": {"red": 255, "green": 228, "blue": 156}, "percentage": 5.63}]}, "profile_banner_extensions_alt_text": null, "profile_banner_extensions_media_availability": null, "profile_banner_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_link_color": "006F97", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "F5F5F5", "profile_text_color": "000000", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": false, "default_profile_image": false, "pinned_tweet_ids": [], "pinned_tweet_ids_str": [], "has_custom_timelines": true, "can_dm": null, "following": null, "follow_request_sent": null, "notifications": null, "muting": null, "blocking": null, "blocked_by": null, "want_retweets": null, "advertiser_account_type": "promotable_user", "advertiser_account_service_levels": ["dso", "dso", "media_studio"], "profile_interstitial_type": "", "business_profile_state": "none", "translator_type": "regular", "withheld_in_countries": [], "followed_by": null, "ext": {"highlightedLabel": {"r": {"ok": {}}, "ttl": -1}}, "require_some_consent": false}}, "card_platform": {"platform": {"device": {"name": "Swift", "version": "12"}, "audience": {"name": "production", "bucket": null}}}}, "lang": "pl", "supplemental_language": null}}
{"object_type": "TweetRaw", "download_datetime": "2021-10-14T13:13:22.754228+02:00", "raw_value": {"created_at": "Thu Oct 14 05:36:48 +0000 2021", "id": 1448523161847439365, "id_str": "1448523161847439365", "full_text": "ZAWSZE OBECNI, bo w pandemii, kt\u00f3ra dotkn\u0119\u0142a ca\u0142y \u015bwiat, byli\u015bmy przy tablicy: wirtualnej czy prawdziwej. Byli\u015bmy z naszymi uczniami, nie zawiedli\u015bmy!\n\nPod takim has\u0142em obchodzimy Dzie\u0144 Nauczyciela razem z @eduint.\n\nPami\u0119tamy te\u017c o pedagogach, kt\u00f3rych zabra\u0142 #COVID19 \ud83d\udda4 https://t.co/Mi4YpPfwPP", "truncated": false, "display_text_range": [0, 269], "entities": {"hashtags": [{"text": "COVID19", "indices": [259, 267]}], "symbols": [], "user_mentions": [{"screen_name": "eduint", "name": "eduint", "id": 49622107, "id_str": "49622107", "indices": [206, 213]}], "urls": [], "media": [{"id": 1448523152133349378, "id_str": "1448523152133349378", "indices": [270, 293], "media_url": "http://pbs.twimg.com/media/FBowIdvWYAIoGiN.jpg", "media_url_https": "https://pbs.twimg.com/media/FBowIdvWYAIoGiN.jpg", "url": "https://t.co/Mi4YpPfwPP", "display_url": "pic.twitter.com/Mi4YpPfwPP", "expanded_url": "https://twitter.com/ZNP_ZG/status/1448523161847439365/photo/1", "type": "photo", "original_info": {"width": 1886, "height": 1061, "focus_rects": [{"x": 0, "y": 0, "h": 1056, "w": 1886}, {"x": 825, "y": 0, "h": 1061, "w": 1061}, {"x": 955, "y": 0, "h": 1061, "w": 931}, {"x": 1290, "y": 0, "h": 1061, "w": 531}, {"x": 0, "y": 0, "h": 1061, "w": 1886}]}, "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 1200, "h": 675, "resize": "fit"}, "large": {"w": 1886, "h": 1061, "resize": "fit"}, "small": {"w": 680, "h": 383, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 1448523152133349378, "id_str": "1448523152133349378", "indices": [270, 293], "media_url": "http://pbs.twimg.com/media/FBowIdvWYAIoGiN.jpg", "media_url_https": "https://pbs.twimg.com/media/FBowIdvWYAIoGiN.jpg", "url": "https://t.co/Mi4YpPfwPP", "display_url": "pic.twitter.com/Mi4YpPfwPP", "expanded_url": "https://twitter.com/ZNP_ZG/status/1448523161847439365/photo/1", "type": "photo", "original_info": {"width": 1886, "height": 1061, "focus_rects": [{"x": 0, "y": 0, "h": 1056, "w": 1886}, {"x": 825, "y": 0, "h": 1061, "w": 1061}, {"x": 955, "y": 0, "h": 1061, "w": 931}, {"x": 1290, "y": 0, "h": 1061, "w": 531}, {"x": 0, "y": 0, "h": 1061, "w": 1886}]}, "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 1200, "h": 675, "resize": "fit"}, "large": {"w": 1886, "h": 1061, "resize": "fit"}, "small": {"w": 680, "h": 383, "resize": "fit"}}, "media_key": "3_1448523152133349378", "ext_alt_text": null, "ext_media_color": {"palette": [{"rgb": {"red": 19, "green": 34, "blue": 35}, "percentage": 79.87}, {"rgb": {"red": 111, "green": 85, "blue": 56}, "percentage": 5.2}, {"rgb": {"red": 174, "green": 169, "blue": 161}, "percentage": 4.97}, {"rgb": {"red": 186, "green": 116, "blue": 75}, "percentage": 2.75}, {"rgb": {"red": 204, "green": 154, "blue": 129}, "percentage": 1.61}]}, "ext_media_availability": {"status": "available"}, "ext": {"mediaStats": {"r": "Missing", "ttl": -1}}}]}, "source": "<a href=\"https://mobile.twitter.com\" rel=\"nofollow\">Twitter Web App</a>", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user_id": 790883151774113793, "user_id_str": "790883151774113793", "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 2, "favorite_count": 14, "reply_count": 1, "quote_count": 0, "conversation_id": 1448523161847439365, "conversation_id_str": "1448523161847439365", "favorited": false, "retweeted": false, "possibly_sensitive": false, "possibly_sensitive_editable": true, "lang": "pl", "supplemental_language": null}}
{"object_type": "TweetRaw", "download_datetime": "2021-10-14T13:13:22.754328+02:00", "raw_value": {"created_at": "Thu Oct 14 00:36:27 +0000 2021", "id": 1448447577108762624, "id_str": "1448447577108762624", "full_text": "Na przesz\u0142o\u015b\u0107 nie mamy wp\u0142ywu, jednak spoczywa na nas obowi\u0105zek korzystania z jej do\u015bwiadcze\u0144, o ile chcemy odpowiedzialnie my\u015ble\u0107 o tera\u017aniejszo\u015bci i przysz\u0142o\u015bci #SARS  #COVID19 @Jagiellonski @WIMWarszawa \nhttps://t.co/eHLbXpCH3F", "truncated": false, "display_text_range": [0, 230], "entities": {"hashtags": [{"text": "SARS", "indices": [163, 168]}, {"text": "COVID19", "indices": [170, 178]}], "symbols": [], "user_mentions": [{"screen_name": "Jagiellonski", "name": "Instytut Jagiello\u0144ski", "id": 1077119546, "id_str": "1077119546", "indices": [179, 192]}, {"screen_name": "WIMWarszawa", "name": "WIM", "id": 1262426430, "id_str": "1262426430", "indices": [193, 205]}], "urls": [{"url": "https://t.co/eHLbXpCH3F", "expanded_url": "https://wim.mil.pl/103-konferencje/aktualnoci7/3882-raport-antykryzysowy-jak-przygotowac-polska-ochrone-zdrowia-przed-kolejna-epidemia", "display_url": "wim.mil.pl/103-konferencj\u2026", "indices": [207, 230]}]}, "source": "<a href=\"https://tapbots.com/software/tweetbot/mac\" rel=\"nofollow\">Tweetbot for Mac</a>", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user_id": 215436051, "user_id_str": "215436051", "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 3, "favorite_count": 6, "reply_count": 0, "quote_count": 0, "conversation_id": 1448447577108762624, "conversation_id_str": "1448447577108762624", "favorited": false, "retweeted": false, "possibly_sensitive": false, "possibly_sensitive_editable": true, "card": {"name": "summary", "url": "https://t.co/eHLbXpCH3F", "card_type_url": "http://card-type-url-is-deprecated.invalid", "binding_values": {"vanity_url": {"type": "STRING", "string_value": "wim.mil.pl", "scribe_key": "vanity_url"}, "domain": {"type": "STRING", "string_value": "wim.mil.pl"}, "title": {"type": "STRING", "string_value": "Raport antykryzysowy \"Jak przygotowa\u0107 polsk\u0105 ochron\u0119 zdrowia na kolejne epidemie\""}, "card_url": {"type": "STRING", "string_value": "https://t.co/eHLbXpCH3F", "scribe_key": "card_url"}}, "card_platform": {"platform": {"device": {"name": "Swift", "version": "12"}, "audience": {"name": "production", "bucket": null}}}}, "lang": "pl", "supplemental_language": null}}
{"object_type": "TweetRaw", "download_datetime": "2021-10-14T13:13:22.754448+02:00", "raw_value": {"created_at": "Thu Oct 14 09:40:59 +0000 2021", "id": 1448584611991281666, "id_str": "1448584611991281666", "full_text": "Od d\u0142u\u017cszego czasu ponad po\u0142owa zaka\u017ce\u0144 #COVID19 jest na Lubelszczy\u017anie, Mazowszu i Podlasiu, czyli tam, gdzie ma\u0142o ludzi si\u0119 zaszczepi\u0142o. Szkoda, \u017ce mieszka\u0144cy tych region\u00f3w wol\u0105 zaryzykowa\u0107 przechorowanie ni\u017c si\u0119 zaszczepi\u0107.", "truncated": false, "display_text_range": [0, 226], "entities": {"hashtags": [{"text": "COVID19", "indices": [40, 48]}], "symbols": [], "user_mentions": [], "urls": []}, "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user_id": 1032634489208496128, "user_id_str": "1032634489208496128", "geo": null, "coordinates": null, "place": {"id": "535f0c2de0121451", "url": "https://api.twitter.com/1.1/geo/id/535f0c2de0121451.json", "place_type": "city", "name": "Warszawa", "full_name": "Warszawa, Polska", "country_code": "PL", "country": "Polska", "contained_within": [], "bounding_box": {"type": "Polygon", "coordinates": [[[20.8525518, 52.0977088], [21.2710282, 52.0977088], [21.2710282, 52.3679617], [20.8525518, 52.3679617]]]}, "attributes": {}}, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 1, "reply_count": 0, "quote_count": 0, "conversation_id": 1448584611991281666, "conversation_id_str": "1448584611991281666", "favorited": false, "retweeted": false, "lang": "pl", "supplemental_language": null}}
{"object_type": "TweetRaw", "download_datetime": "2021-10-14T13:13:22.754597+02:00", "raw_value": {"created_at": "Wed Oct 13 13:00:51 +0000 2021", "id": 1448272522416435201, "id_str": "1448272522416435201", "full_text": "Prezydent Warszawy Rafa\u0142 @trzaskowski_ o Marszu Niepodleg\u0142o\u015bci: Epidemia to nie jest czas na organizowanie a\u017c tak wielkich demonstracji https://t.co/2DUaiWljpd https://t.co/MzsfLGrm1W", "truncated": false, "display_text_range": [0, 159], "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "trzaskowski_", "name": "Rafa\u0142 Trzaskowski", "id": 370112160, "id_str": "370112160", "indices": [25, 38]}], "urls": [{"url": "https://t.co/2DUaiWljpd", "expanded_url": "https://www.rp.pl/polityka/art19011181-trzaskowski-marsz-niepodleglosci-epidemia-to-nie-czas-na-tak-wielkie-demonstracje", "display_url": "rp.pl/polityka/art19\u2026", "indices": [136, 159]}], "media": [{"id": 1448272400651538433, "id_str": "1448272400651538433", "indices": [160, 183], "media_url": "http://pbs.twimg.com/media/FBlMEzrWUAEt9od.jpg", "media_url_https": "https://pbs.twimg.com/media/FBlMEzrWUAEt9od.jpg", "url": "https://t.co/MzsfLGrm1W", "display_url": "pic.twitter.com/MzsfLGrm1W", "expanded_url": "https://twitter.com/rzeczpospolita/status/1448272522416435201/photo/1", "type": "photo", "original_info": {"width": 800, "height": 440, "focus_rects": [{"x": 0, "y": 0, "h": 440, "w": 786}, {"x": 40, "y": 0, "h": 440, "w": 440}, {"x": 67, "y": 0, "h": 440, "w": 386}, {"x": 150, "y": 0, "h": 440, "w": 220}, {"x": 0, "y": 0, "h": 440, "w": 800}]}, "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 680, "h": 374, "resize": "fit"}, "large": {"w": 800, "h": 440, "resize": "fit"}, "medium": {"w": 800, "h": 440, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 1448272400651538433, "id_str": "1448272400651538433", "indices": [160, 183], "media_url": "http://pbs.twimg.com/media/FBlMEzrWUAEt9od.jpg", "media_url_https": "https://pbs.twimg.com/media/FBlMEzrWUAEt9od.jpg", "url": "https://t.co/MzsfLGrm1W", "display_url": "pic.twitter.com/MzsfLGrm1W", "expanded_url": "https://twitter.com/rzeczpospolita/status/1448272522416435201/photo/1", "type": "photo", "original_info": {"width": 800, "height": 440, "focus_rects": [{"x": 0, "y": 0, "h": 440, "w": 786}, {"x": 40, "y": 0, "h": 440, "w": 440}, {"x": 67, "y": 0, "h": 440, "w": 386}, {"x": 150, "y": 0, "h": 440, "w": 220}, {"x": 0, "y": 0, "h": 440, "w": 800}]}, "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 680, "h": 374, "resize": "fit"}, "large": {"w": 800, "h": 440, "resize": "fit"}, "medium": {"w": 800, "h": 440, "resize": "fit"}}, "media_key": "3_1448272400651538433", "ext_media_color": {"palette": [{"rgb": {"red": 242, "green": 251, "blue": 254}, "percentage": 54.22}, {"rgb": {"red": 69, "green": 105, "blue": 196}, "percentage": 17.73}, {"rgb": {"red": 184, "green": 141, "blue": 125}, "percentage": 7.08}, {"rgb": {"red": 40, "green": 36, "blue": 33}, "percentage": 6.64}, {"rgb": {"red": 24, "green": 51, "blue": 158}, "percentage": 2.87}]}, "ext_alt_text": "Rafa\u0142 Trzaskowski, fot. Fotorzepa, Jakub Czermi\u0144ski", "ext_media_availability": {"status": "available"}, "ext": {"mediaStats": {"r": "Missing", "ttl": -1}}}]}, "source": "<a href=\"https://about.twitter.com/products/tweetdeck\" rel=\"nofollow\">TweetDeck</a>", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user_id": 194399035, "user_id_str": "194399035", "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 11, "favorite_count": 86, "reply_count": 64, "quote_count": 15, "conversation_id": 1448272522416435201, "conversation_id_str": "1448272522416435201", "favorited": false, "retweeted": false, "possibly_sensitive": false, "possibly_sensitive_editable": true, "lang": "pl", "supplemental_language": null}}
{"object_type": "TweetRaw", "download_datetime": "2021-10-14T13:13:22.754851+02:00", "raw_value": {"created_at": "Thu Oct 14 08:14:50 +0000 2021", "id": 1448562932443455491, "id_str": "1448562932443455491", "full_text": "Nie chc\u0119 nawet my\u015ble\u0107 jakie piek\u0142o rozp\u0119ta @GretaThunberg gdy si\u0119 dowie o tej masowej imprezie, gdzie 25tys delegat\u00f3w zostanie zwiezionych do Glasgow, miernik #CO2footPrint wywali poza skal\u0119, \u017ce o mierniku #COVID19 nie wspomn\u0119 https://t.co/NSPSnbVzUN", "truncated": false, "display_text_range": [0, 250], "entities": {"hashtags": [{"text": "CO2footPrint", "indices": [159, 172]}, {"text": "COVID19", "indices": [206, 214]}], "symbols": [], "user_mentions": [{"screen_name": "GretaThunberg", "name": "Greta Thunberg", "id": 1006419421244678144, "id_str": "1006419421244678144", "indices": [43, 57]}], "urls": [{"url": "https://t.co/NSPSnbVzUN", "expanded_url": "https://www.bbc.com/news/uk-scotland-58153616.amp", "display_url": "bbc.com/news/uk-scotla\u2026", "indices": [227, 250]}]}, "source": "<a href=\"https://mobile.twitter.com\" rel=\"nofollow\">Twitter Web App</a>", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user_id": 218189019, "user_id_str": "218189019", "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "reply_count": 0, "quote_count": 0, "conversation_id": 1448562932443455491, "conversation_id_str": "1448562932443455491", "favorited": false, "retweeted": false, "possibly_sensitive": false, "possibly_sensitive_editable": true, "card": {"name": "summary_large_image", "url": "https://t.co/NSPSnbVzUN", "card_type_url": "http://card-type-url-is-deprecated.invalid", "binding_values": {"vanity_url": {"type": "STRING", "string_value": "bbc.com", "scribe_key": "vanity_url"}, "domain": {"type": "STRING", "string_value": "www.bbc.com"}, "creator": {"type": "USER", "user_value": {"id_str": "612473", "path": []}}, "site": {"type": "USER", "user_value": {"id_str": "612473", "path": []}, "scribe_key": "publisher_id"}, "title": {"type": "STRING", "string_value": "Covid travel rules relaxed for COP26 delegates - BBC News"}, "summary_photo_image_alt_text": {"type": "STRING", "string_value": "Scottish Event Campus"}, "photo_image_full_size_alt_text": {"type": "STRING", "string_value": "Scottish Event Campus"}, "description": {"type": "STRING", "string_value": "People attending the climate summit in Glasgow will be strongly encouraged to be fully vaccinated."}, "thumbnail_image_small": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1445734320249901057/xaLr6r4B?format=jpg&name=144x144", "width": 144, "height": 81, "alt": "Scottish Event Campus"}}, "thumbnail_image": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1445734320249901057/xaLr6r4B?format=jpg&name=280x150", "width": 267, "height": 150, "alt": "Scottish Event Campus"}}, "thumbnail_image_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1445734320249901057/xaLr6r4B?format=jpg&name=800x320_1", "width": 569, "height": 320, "alt": "Scottish Event Campus"}}, "thumbnail_image_x_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1445734320249901057/xaLr6r4B?format=png&name=2048x2048_2_exp", "width": 1024, "height": 576, "alt": "Scottish Event Campus"}}, "thumbnail_image_original": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1445734320249901057/xaLr6r4B?format=jpg&name=orig", "width": 1024, "height": 576, "alt": "Scottish Event Campus"}}, "summary_photo_image_small": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1445734320249901057/xaLr6r4B?format=jpg&name=386x202", "width": 386, "height": 202, "alt": "Scottish Event Campus"}}, "summary_photo_image": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1445734320249901057/xaLr6r4B?format=jpg&name=600x314", "width": 600, "height": 314, "alt": "Scottish Event Campus"}}, "summary_photo_image_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1445734320249901057/xaLr6r4B?format=jpg&name=800x419", "width": 800, "height": 419, "alt": "Scottish Event Campus"}}, "summary_photo_image_x_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1445734320249901057/xaLr6r4B?format=png&name=2048x2048_2_exp", "width": 1024, "height": 576, "alt": "Scottish Event Campus"}}, "summary_photo_image_original": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1445734320249901057/xaLr6r4B?format=jpg&name=orig", "width": 1024, "height": 576, "alt": "Scottish Event Campus"}}, "photo_image_full_size_small": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1445734320249901057/xaLr6r4B?format=jpg&name=386x202", "width": 386, "height": 202, "alt": "Scottish Event Campus"}}, "photo_image_full_size": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1445734320249901057/xaLr6r4B?format=jpg&name=600x314", "width": 600, "height": 314, "alt": "Scottish Event Campus"}}, "photo_image_full_size_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1445734320249901057/xaLr6r4B?format=jpg&name=800x419", "width": 800, "height": 419, "alt": "Scottish Event Campus"}}, "photo_image_full_size_x_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1445734320249901057/xaLr6r4B?format=png&name=2048x2048_2_exp", "width": 1024, "height": 576, "alt": "Scottish Event Campus"}}, "photo_image_full_size_original": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1445734320249901057/xaLr6r4B?format=jpg&name=orig", "width": 1024, "height": 576, "alt": "Scottish Event Campus"}}, "card_url": {"type": "STRING", "string_value": "https://t.co/NSPSnbVzUN", "scribe_key": "card_url"}}, "users": {"612473": {"id": 612473, "id_str": "612473", "name": "BBC News (UK)", "screen_name": "BBCNews", "location": "London", "description": "News, features and analysis. For world news, follow @BBCWorld. Breaking news, follow @BBCBreaking. Latest sport news @BBCSport. Our Instagram: BBCNews", "url": "https://t.co/vBzl7LNCCQ", "entities": {"url": {"urls": [{"url": "https://t.co/vBzl7LNCCQ", "expanded_url": "http://www.bbc.co.uk/news", "display_url": "bbc.co.uk/news", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 12748121, "fast_followers_count": 0, "normal_followers_count": 12748121, "friends_count": 93, "listed_count": 46603, "created_at": "Mon Jan 08 08:05:57 +0000 2007", "favourites_count": 46, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": true, "statuses_count": 470749, "media_count": 44771, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": true, "profile_background_color": "FFFFFF", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1150718511129477120/2N_GW7HR_normal.png", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1150718511129477120/2N_GW7HR_normal.png", "profile_banner_url": "https://pbs.twimg.com/profile_banners/612473/1621582368", "profile_image_extensions_alt_text": null, "profile_image_extensions_media_availability": null, "profile_image_extensions_media_color": {"palette": [{"rgb": {"red": 185, "green": 0, "blue": 1}, "percentage": 86.71}, {"rgb": {"red": 254, "green": 253, "blue": 254}, "percentage": 9.8}, {"rgb": {"red": 201, "green": 80, "blue": 80}, "percentage": 2.5}, {"rgb": {"red": 222, "green": 150, "blue": 151}, "percentage": 0.98}]}, "profile_image_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_banner_extensions_alt_text": null, "profile_banner_extensions_media_availability": null, "profile_banner_extensions_media_color": {"palette": [{"rgb": {"red": 238, "green": 238, "blue": 238}, "percentage": 89.55}, {"rgb": {"red": 72, "green": 113, "blue": 126}, "percentage": 7.83}, {"rgb": {"red": 51, "green": 137, "blue": 170}, "percentage": 1.87}, {"rgb": {"red": 68, "green": 149, "blue": 174}, "percentage": 0.53}, {"rgb": {"red": 37, "green": 37, "blue": 37}, "percentage": 0.22}]}, "profile_banner_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_link_color": "1F527B", "profile_sidebar_border_color": "FFFFFF", "profile_sidebar_fill_color": "FFFFFF", "profile_text_color": "5A5A5A", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": false, "default_profile_image": false, "pinned_tweet_ids": [], "pinned_tweet_ids_str": [], "has_custom_timelines": true, "can_dm": null, "following": null, "follow_request_sent": null, "notifications": null, "muting": null, "blocking": null, "blocked_by": null, "want_retweets": null, "advertiser_account_type": "promotable_user", "advertiser_account_service_levels": ["dso", "dso", "dso", "smb", "media_studio"], "profile_interstitial_type": "", "business_profile_state": "none", "translator_type": "regular", "withheld_in_countries": [], "followed_by": null, "ext": {"highlightedLabel": {"r": {"ok": {}}, "ttl": -1}}, "require_some_consent": false}}, "card_platform": {"platform": {"device": {"name": "Swift", "version": "12"}, "audience": {"name": "production", "bucket": null}}}}, "lang": "pl", "supplemental_language": null}}
{"object_type": "TweetRaw", "download_datetime": "2021-10-14T13:13:22.754999+02:00", "raw_value": {"created_at": "Thu Oct 14 09:23:42 +0000 2021", "id": 1448580263395663874, "id_str": "1448580263395663874", "full_text": "BUM! \n\nPolska w okresie kryzysowym odnotowa\u0142a drugi najwy\u017cszy w UE wzrost odsetka os\u00f3b pracuj\u0105cych: +1,9 pp. w stosunku do wyniku sprzed kryzysu #COVID19. \nLepszy wynik odnotowa\u0142y tylko \ud83c\udded\ud83c\uddfa\n\nDla por\u00f3wnania tym samym okresie: \n\ud83c\uddea\ud83c\uddfa -0,5 pp.\n\ud83d\udcb6-0,7 pp.\n\n\u0179r\u00f3d\u0142o: https://t.co/aAb0evQmuK https://t.co/sFnI5D3MvA", "truncated": false, "display_text_range": [0, 279], "entities": {"hashtags": [{"text": "COVID19", "indices": [145, 153]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/aAb0evQmuK", "expanded_url": "https://ec.europa.eu/eurostat/databrowser/view/LFSI_EMP_Q__custom_1410225/default/table?lang=en", "display_url": "ec.europa.eu/eurostat/datab\u2026", "indices": [256, 279]}], "media": [{"id": 1448579211330039810, "id_str": "1448579211330039810", "indices": [280, 303], "media_url": "http://pbs.twimg.com/media/FBpjHihXsAIQsY3.png", "media_url_https": "https://pbs.twimg.com/media/FBpjHihXsAIQsY3.png", "url": "https://t.co/sFnI5D3MvA", "display_url": "pic.twitter.com/sFnI5D3MvA", "expanded_url": "https://twitter.com/KubisiakA/status/1448580263395663874/photo/1", "type": "photo", "original_info": {"width": 853, "height": 527, "focus_rects": [{"x": 0, "y": 0, "h": 478, "w": 853}, {"x": 326, "y": 0, "h": 527, "w": 527}, {"x": 386, "y": 0, "h": 527, "w": 462}, {"x": 485, "y": 0, "h": 527, "w": 264}, {"x": 0, "y": 0, "h": 527, "w": 853}]}, "sizes": {"medium": {"w": 853, "h": 527, "resize": "fit"}, "large": {"w": 853, "h": 527, "resize": "fit"}, "small": {"w": 680, "h": 420, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}}}]}, "extended_entities": {"media": [{"id": 1448579211330039810, "id_str": "1448579211330039810", "indices": [280, 303], "media_url": "http://pbs.twimg.com/media/FBpjHihXsAIQsY3.png", "media_url_https": "https://pbs.twimg.com/media/FBpjHihXsAIQsY3.png", "url": "https://t.co/sFnI5D3MvA", "display_url": "pic.twitter.com/sFnI5D3MvA", "expanded_url": "https://twitter.com/KubisiakA/status/1448580263395663874/photo/1", "type": "photo", "original_info": {"width": 853, "height": 527, "focus_rects": [{"x": 0, "y": 0, "h": 478, "w": 853}, {"x": 326, "y": 0, "h": 527, "w": 527}, {"x": 386, "y": 0, "h": 527, "w": 462}, {"x": 485, "y": 0, "h": 527, "w": 264}, {"x": 0, "y": 0, "h": 527, "w": 853}]}, "sizes": {"medium": {"w": 853, "h": 527, "resize": "fit"}, "large": {"w": 853, "h": 527, "resize": "fit"}, "small": {"w": 680, "h": 420, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}}, "media_key": "3_1448579211330039810", "ext_alt_text": null, "ext_media_availability": {"status": "available"}, "ext_media_color": {"palette": [{"rgb": {"red": 255, "green": 255, "blue": 255}, "percentage": 91.69}, {"rgb": {"red": 255, "green": 207, "blue": 62}, "percentage": 3.48}, {"rgb": {"red": 255, "green": 235, "blue": 177}, "percentage": 3.25}, {"rgb": {"red": 255, "green": 222, "blue": 123}, "percentage": 0.97}, {"rgb": {"red": 255, "green": 117, "blue": 117}, "percentage": 0.41}]}, "ext": {"mediaStats": {"r": "Missing", "ttl": -1}}}]}, "source": "<a href=\"https://mobile.twitter.com\" rel=\"nofollow\">Twitter Web App</a>", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user_id": 2555407237, "user_id_str": "2555407237", "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 2, "favorite_count": 15, "reply_count": 2, "quote_count": 2, "conversation_id": 1448580263395663874, "conversation_id_str": "1448580263395663874", "favorited": false, "retweeted": false, "possibly_sensitive": false, "possibly_sensitive_editable": true, "lang": "pl", "supplemental_language": null, "self_thread": {"id": 1448580263395663874, "id_str": "1448580263395663874"}}}
{"object_type": "TweetRaw", "download_datetime": "2021-10-14T13:13:22.755077+02:00", "raw_value": {"created_at": "Thu Oct 14 08:51:07 +0000 2021", "id": 1448572063099281413, "id_str": "1448572063099281413", "full_text": "M\u00f3wili: pr\u0119dzej umrzesz na #COVID19 ni\u017c wyjdzie okr\u0105g\u0142a liczba zaka\u017ce\u0144 \ud83d\ude1c", "truncated": false, "display_text_range": [0, 72], "entities": {"hashtags": [{"text": "COVID19", "indices": [27, 35]}], "symbols": [], "user_mentions": [], "urls": []}, "source": "<a href=\"https://mobile.twitter.com\" rel=\"nofollow\">Twitter Web App</a>", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user_id": 385837087, "user_id_str": "385837087", "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1448567048842383361, "quoted_status_id_str": "1448567048842383361", "quoted_status_permalink": {"url": "https://t.co/zQhCY7eZvG", "expanded": "https://twitter.com/MZ_GOV_PL/status/1448567048842383361", "display": "twitter.com/MZ_GOV_PL/stat\u2026"}, "retweet_count": 0, "favorite_count": 0, "reply_count": 0, "quote_count": 0, "conversation_id": 1448572063099281413, "conversation_id_str": "1448572063099281413", "favorited": false, "retweeted": false, "lang": "pl", "supplemental_language": null}}
{"object_type": "TweetRaw", "download_datetime": "2021-10-14T13:13:22.755213+02:00", "raw_value": {"created_at": "Thu Oct 14 09:00:30 +0000 2021", "id": 1448574421795487748, "id_str": "1448574421795487748", "full_text": "Czeskie Ministerstwo Zdrowia zwr\u00f3ci si\u0119 do rz\u0105du o skr\u00f3cenie wa\u017cno\u015bci test\u00f3w na koronawirusa. Negatywny wynik badania m\u00f3g\u0142by te\u017c skr\u00f3ci\u0107 okres kwarantanny. Szczeg\u00f3\u0142y w tej sprawie zostan\u0105 przedstawione na pi\u0105tkowej konferencji prasowej. \n\nWi\u0119cej na #gloslive!\n#czechy #covid19 https://t.co/LnMZ7C03k6", "truncated": false, "display_text_range": [0, 276], "entities": {"hashtags": [{"text": "gloslive", "indices": [249, 258]}, {"text": "czechy", "indices": [260, 267]}, {"text": "covid19", "indices": [268, 276]}], "symbols": [], "user_mentions": [], "urls": [], "media": [{"id": 1448574418838511619, "id_str": "1448574418838511619", "indices": [277, 300], "media_url": "http://pbs.twimg.com/media/FBpewlGWYAMyi7v.jpg", "media_url_https": "https://pbs.twimg.com/media/FBpewlGWYAMyi7v.jpg", "url": "https://t.co/LnMZ7C03k6", "display_url": "pic.twitter.com/LnMZ7C03k6", "expanded_url": "https://twitter.com/gloslivezaolzie/status/1448574421795487748/photo/1", "type": "photo", "original_info": {"width": 600, "height": 337, "focus_rects": [{"x": 0, "y": 0, "h": 336, "w": 600}, {"x": 116, "y": 0, "h": 337, "w": 337}, {"x": 136, "y": 0, "h": 337, "w": 296}, {"x": 200, "y": 0, "h": 337, "w": 169}, {"x": 0, "y": 0, "h": 337, "w": 600}]}, "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 600, "h": 337, "resize": "fit"}, "small": {"w": 600, "h": 337, "resize": "fit"}, "large": {"w": 600, "h": 337, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 1448574418838511619, "id_str": "1448574418838511619", "indices": [277, 300], "media_url": "http://pbs.twimg.com/media/FBpewlGWYAMyi7v.jpg", "media_url_https": "https://pbs.twimg.com/media/FBpewlGWYAMyi7v.jpg", "url": "https://t.co/LnMZ7C03k6", "display_url": "pic.twitter.com/LnMZ7C03k6", "expanded_url": "https://twitter.com/gloslivezaolzie/status/1448574421795487748/photo/1", "type": "photo", "original_info": {"width": 600, "height": 337, "focus_rects": [{"x": 0, "y": 0, "h": 336, "w": 600}, {"x": 116, "y": 0, "h": 337, "w": 337}, {"x": 136, "y": 0, "h": 337, "w": 296}, {"x": 200, "y": 0, "h": 337, "w": 169}, {"x": 0, "y": 0, "h": 337, "w": 600}]}, "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 600, "h": 337, "resize": "fit"}, "small": {"w": 600, "h": 337, "resize": "fit"}, "large": {"w": 600, "h": 337, "resize": "fit"}}, "media_key": "3_1448574418838511619", "ext_media_color": {"palette": [{"rgb": {"red": 39, "green": 25, "blue": 30}, "percentage": 26.35}, {"rgb": {"red": 126, "green": 161, "blue": 185}, "percentage": 25.72}, {"rgb": {"red": 241, "green": 203, "blue": 168}, "percentage": 17.25}, {"rgb": {"red": 112, "green": 80, "blue": 58}, "percentage": 15.42}, {"rgb": {"red": 65, "green": 80, "blue": 111}, "percentage": 9.21}]}, "ext_alt_text": null, "ext_media_availability": {"status": "available"}, "ext": {"mediaStats": {"r": "Missing", "ttl": -1}}}]}, "source": "<a href=\"https://buffer.com\" rel=\"nofollow\">Buffer</a>", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user_id": 1251574134, "user_id_str": "1251574134", "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 1, "reply_count": 0, "quote_count": 0, "conversation_id": 1448574421795487748, "conversation_id_str": "1448574421795487748", "favorited": false, "retweeted": false, "possibly_sensitive": false, "possibly_sensitive_editable": true, "lang": "pl", "supplemental_language": null}}
{"object_type": "TweetRaw", "download_datetime": "2021-10-14T13:13:22.755510+02:00", "raw_value": {"created_at": "Thu Oct 14 08:38:36 +0000 2021", "id": 1448568910912098312, "id_str": "1448568910912098312", "full_text": "#COVID19 w \ud83c\uddf5\ud83c\uddf1\n\n\ud83d\udcc8 Wska\u017anik \u015bredniej z 7 dni liczby nowych zaka\u017ce\u0144 #COVID19 na 100 tys. mieszka\u0144c\u00f3w \ud83c\uddf5\ud83c\uddf1 wynosi 5\u20e3,2\u20e36\u20e3\u00a0 \ud83d\udc49https://t.co/lON9x1jySS https://t.co/n72EsWbQTM", "truncated": false, "display_text_range": [0, 141], "entities": {"hashtags": [{"text": "COVID19", "indices": [0, 8]}, {"text": "COVID19", "indices": [65, 73]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/lON9x1jySS", "expanded_url": "http://c19.ovh", "display_url": "c19.ovh", "indices": [118, 141]}], "media": [{"id": 1448568318995140611, "id_str": "1448568318995140611", "indices": [142, 165], "media_url": "http://pbs.twimg.com/media/FBpZNhaXEAMUSZf.jpg", "media_url_https": "https://pbs.twimg.com/media/FBpZNhaXEAMUSZf.jpg", "url": "https://t.co/n72EsWbQTM", "display_url": "pic.twitter.com/n72EsWbQTM", "expanded_url": "https://twitter.com/PiotrekT/status/1448568910912098312/photo/1", "type": "photo", "original_info": {"width": 1368, "height": 762, "focus_rects": [{"x": 7, "y": 0, "h": 762, "w": 1361}, {"x": 606, "y": 0, "h": 762, "w": 762}, {"x": 700, "y": 0, "h": 762, "w": 668}, {"x": 870, "y": 0, "h": 762, "w": 381}, {"x": 0, "y": 0, "h": 762, "w": 1368}]}, "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 1368, "h": 762, "resize": "fit"}, "medium": {"w": 1200, "h": 668, "resize": "fit"}, "small": {"w": 680, "h": 379, "resize": "fit"}}}, {"id": 1448568403791392768, "id_str": "1448568403791392768", "indices": [142, 165], "media_url": "http://pbs.twimg.com/media/FBpZSdTXMAAGQqt.jpg", "media_url_https": "https://pbs.twimg.com/media/FBpZSdTXMAAGQqt.jpg", "url": "https://t.co/n72EsWbQTM", "display_url": "pic.twitter.com/n72EsWbQTM", "expanded_url": "https://twitter.com/PiotrekT/status/1448568910912098312/photo/1", "type": "photo", "original_info": {"width": 1398, "height": 768, "focus_rects": [{"x": 27, "y": 0, "h": 768, "w": 1371}, {"x": 630, "y": 0, "h": 768, "w": 768}, {"x": 724, "y": 0, "h": 768, "w": 674}, {"x": 960, "y": 0, "h": 768, "w": 384}, {"x": 0, "y": 0, "h": 768, "w": 1398}]}, "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 1398, "h": 768, "resize": "fit"}, "small": {"w": 680, "h": 374, "resize": "fit"}, "medium": {"w": 1200, "h": 659, "resize": "fit"}}}, {"id": 1448568540349542400, "id_str": "1448568540349542400", "indices": [142, 165], "media_url": "http://pbs.twimg.com/media/FBpZaaBXMAAHTr3.jpg", "media_url_https": "https://pbs.twimg.com/media/FBpZaaBXMAAHTr3.jpg", "url": "https://t.co/n72EsWbQTM", "display_url": "pic.twitter.com/n72EsWbQTM", "expanded_url": "https://twitter.com/PiotrekT/status/1448568910912098312/photo/1", "type": "photo", "original_info": {"width": 1586, "height": 772, "focus_rects": [{"x": 0, "y": 0, "h": 772, "w": 1379}, {"x": 207, "y": 0, "h": 772, "w": 772}, {"x": 255, "y": 0, "h": 772, "w": 677}, {"x": 400, "y": 0, "h": 772, "w": 386}, {"x": 0, "y": 0, "h": 772, "w": 1586}]}, "sizes": {"large": {"w": 1586, "h": 772, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 680, "h": 331, "resize": "fit"}, "medium": {"w": 1200, "h": 584, "resize": "fit"}}}, {"id": 1448568646196940803, "id_str": "1448568646196940803", "indices": [142, 165], "media_url": "http://pbs.twimg.com/media/FBpZgkVWUAMmEFb.jpg", "media_url_https": "https://pbs.twimg.com/media/FBpZgkVWUAMmEFb.jpg", "url": "https://t.co/n72EsWbQTM", "display_url": "pic.twitter.com/n72EsWbQTM", "expanded_url": "https://twitter.com/PiotrekT/status/1448568910912098312/photo/1", "type": "photo", "original_info": {"width": 1335, "height": 779, "focus_rects": [{"x": 0, "y": 0, "h": 748, "w": 1335}, {"x": 377, "y": 0, "h": 779, "w": 779}, {"x": 425, "y": 0, "h": 779, "w": 683}, {"x": 571, "y": 0, "h": 779, "w": 390}, {"x": 0, "y": 0, "h": 779, "w": 1335}]}, "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 680, "h": 397, "resize": "fit"}, "medium": {"w": 1200, "h": 700, "resize": "fit"}, "large": {"w": 1335, "h": 779, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 1448568318995140611, "id_str": "1448568318995140611", "indices": [142, 165], "media_url": "http://pbs.twimg.com/media/FBpZNhaXEAMUSZf.jpg", "media_url_https": "https://pbs.twimg.com/media/FBpZNhaXEAMUSZf.jpg", "url": "https://t.co/n72EsWbQTM", "display_url": "pic.twitter.com/n72EsWbQTM", "expanded_url": "https://twitter.com/PiotrekT/status/1448568910912098312/photo/1", "type": "photo", "original_info": {"width": 1368, "height": 762, "focus_rects": [{"x": 7, "y": 0, "h": 762, "w": 1361}, {"x": 606, "y": 0, "h": 762, "w": 762}, {"x": 700, "y": 0, "h": 762, "w": 668}, {"x": 870, "y": 0, "h": 762, "w": 381}, {"x": 0, "y": 0, "h": 762, "w": 1368}]}, "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 1368, "h": 762, "resize": "fit"}, "medium": {"w": 1200, "h": 668, "resize": "fit"}, "small": {"w": 680, "h": 379, "resize": "fit"}}, "media_key": "3_1448568318995140611", "ext_alt_text": null, "ext_media_availability": {"status": "available"}, "ext_media_color": {"palette": [{"rgb": {"red": 253, "green": 252, "blue": 252}, "percentage": 99.23}, {"rgb": {"red": 140, "green": 142, "blue": 143}, "percentage": 0.29}, {"rgb": {"red": 206, "green": 151, "blue": 158}, "percentage": 0.28}, {"rgb": {"red": 225, "green": 234, "blue": 237}, "percentage": 0.21}]}, "ext": {"mediaStats": {"r": "Missing", "ttl": -1}}}, {"id": 1448568403791392768, "id_str": "1448568403791392768", "indices": [142, 165], "media_url": "http://pbs.twimg.com/media/FBpZSdTXMAAGQqt.jpg", "media_url_https": "https://pbs.twimg.com/media/FBpZSdTXMAAGQqt.jpg", "url": "https://t.co/n72EsWbQTM", "display_url": "pic.twitter.com/n72EsWbQTM", "expanded_url": "https://twitter.com/PiotrekT/status/1448568910912098312/photo/1", "type": "photo", "original_info": {"width": 1398, "height": 768, "focus_rects": [{"x": 27, "y": 0, "h": 768, "w": 1371}, {"x": 630, "y": 0, "h": 768, "w": 768}, {"x": 724, "y": 0, "h": 768, "w": 674}, {"x": 960, "y": 0, "h": 768, "w": 384}, {"x": 0, "y": 0, "h": 768, "w": 1398}]}, "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 1398, "h": 768, "resize": "fit"}, "small": {"w": 680, "h": 374, "resize": "fit"}, "medium": {"w": 1200, "h": 659, "resize": "fit"}}, "media_key": "3_1448568403791392768", "ext_media_color": {"palette": [{"rgb": {"red": 245, "green": 245, "blue": 245}, "percentage": 99.35}, {"rgb": {"red": 220, "green": 159, "blue": 172}, "percentage": 0.56}]}, "ext_alt_text": null, "ext_media_availability": {"status": "available"}, "ext": {"mediaStats": {"r": "Missing", "ttl": -1}}}, {"id": 1448568540349542400, "id_str": "1448568540349542400", "indices": [142, 165], "media_url": "http://pbs.twimg.com/media/FBpZaaBXMAAHTr3.jpg", "media_url_https": "https://pbs.twimg.com/media/FBpZaaBXMAAHTr3.jpg", "url": "https://t.co/n72EsWbQTM", "display_url": "pic.twitter.com/n72EsWbQTM", "expanded_url": "https://twitter.com/PiotrekT/status/1448568910912098312/photo/1", "type": "photo", "original_info": {"width": 1586, "height": 772, "focus_rects": [{"x": 0, "y": 0, "h": 772, "w": 1379}, {"x": 207, "y": 0, "h": 772, "w": 772}, {"x": 255, "y": 0, "h": 772, "w": 677}, {"x": 400, "y": 0, "h": 772, "w": 386}, {"x": 0, "y": 0, "h": 772, "w": 1586}]}, "sizes": {"large": {"w": 1586, "h": 772, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 680, "h": 331, "resize": "fit"}, "medium": {"w": 1200, "h": 584, "resize": "fit"}}, "media_key": "3_1448568540349542400", "ext_alt_text": null, "ext_media_availability": {"status": "available"}, "ext_media_color": {"palette": [{"rgb": {"red": 245, "green": 245, "blue": 245}, "percentage": 99.55}, {"rgb": {"red": 223, "green": 182, "blue": 183}, "percentage": 0.45}]}, "ext": {"mediaStats": {"r": "Missing", "ttl": -1}}}, {"id": 1448568646196940803, "id_str": "1448568646196940803", "indices": [142, 165], "media_url": "http://pbs.twimg.com/media/FBpZgkVWUAMmEFb.jpg", "media_url_https": "https://pbs.twimg.com/media/FBpZgkVWUAMmEFb.jpg", "url": "https://t.co/n72EsWbQTM", "display_url": "pic.twitter.com/n72EsWbQTM", "expanded_url": "https://twitter.com/PiotrekT/status/1448568910912098312/photo/1", "type": "photo", "original_info": {"width": 1335, "height": 779, "focus_rects": [{"x": 0, "y": 0, "h": 748, "w": 1335}, {"x": 377, "y": 0, "h": 779, "w": 779}, {"x": 425, "y": 0, "h": 779, "w": 683}, {"x": 571, "y": 0, "h": 779, "w": 390}, {"x": 0, "y": 0, "h": 779, "w": 1335}]}, "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 680, "h": 397, "resize": "fit"}, "medium": {"w": 1200, "h": 700, "resize": "fit"}, "large": {"w": 1335, "h": 779, "resize": "fit"}}, "media_key": "3_1448568646196940803", "ext_alt_text": null, "ext_media_availability": {"status": "available"}, "ext_media_color": {"palette": [{"rgb": {"red": 245, "green": 245, "blue": 245}, "percentage": 71.25}, {"rgb": {"red": 205, "green": 203, "blue": 118}, "percentage": 26.55}, {"rgb": {"red": 243, "green": 196, "blue": 127}, "percentage": 2.13}]}, "ext": {"mediaStats": {"r": "Missing", "ttl": -1}}}]}, "source": "<a href=\"https://mobile.twitter.com\" rel=\"nofollow\">Twitter Web App</a>", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user_id": 134347213, "user_id_str": "134347213", "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 5, "favorite_count": 19, "reply_count": 3, "quote_count": 1, "conversation_id": 1448568910912098312, "conversation_id_str": "1448568910912098312", "favorited": false, "retweeted": false, "possibly_sensitive": true, "possibly_sensitive_editable": true, "lang": "pl", "supplemental_language": null}}
{"object_type": "TweetRaw", "download_datetime": "2021-10-14T13:13:22.755817+02:00", "raw_value": {"created_at": "Thu Oct 14 10:59:38 +0000 2021", "id": 1448604402936389632, "id_str": "1448604402936389632", "full_text": "RAPORT WOJEW\u00d3DZKI\nSytuacja epidemiologiczna | #covid19\n#MinisterstwoZdrowia\n---\n#\u015aL\u0104SKIE #1minuta i wiesz wi\u0119cej! https://t.co/VZxDzaiURi", "truncated": false, "display_text_range": [0, 113], "entities": {"hashtags": [{"text": "covid19", "indices": [46, 54]}, {"text": "MinisterstwoZdrowia", "indices": [55, 75]}, {"text": "\u015aL\u0104SKIE", "indices": [80, 88]}, {"text": "1minuta", "indices": [89, 97]}], "symbols": [], "user_mentions": [], "urls": [], "media": [{"id": 1448604392781910016, "id_str": "1448604392781910016", "indices": [114, 137], "media_url": "http://pbs.twimg.com/media/FBp6BSvWEAAQbN3.jpg", "media_url_https": "https://pbs.twimg.com/media/FBp6BSvWEAAQbN3.jpg", "url": "https://t.co/VZxDzaiURi", "display_url": "pic.twitter.com/VZxDzaiURi", "expanded_url": "https://twitter.com/JWieczorekPL/status/1448604402936389632/photo/1", "type": "photo", "original_info": {"width": 1138, "height": 640, "focus_rects": [{"x": 0, "y": 3, "h": 637, "w": 1138}, {"x": 163, "y": 0, "h": 640, "w": 640}, {"x": 203, "y": 0, "h": 640, "w": 561}, {"x": 323, "y": 0, "h": 640, "w": 320}, {"x": 0, "y": 0, "h": 640, "w": 1138}]}, "sizes": {"large": {"w": 1138, "h": 640, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 680, "h": 382, "resize": "fit"}, "medium": {"w": 1138, "h": 640, "resize": "fit"}}}, {"id": 1448604393482465280, "id_str": "1448604393482465280", "indices": [114, 137], "media_url": "http://pbs.twimg.com/media/FBp6BVWXsAAxewu.jpg", "media_url_https": "https://pbs.twimg.com/media/FBp6BVWXsAAxewu.jpg", "url": "https://t.co/VZxDzaiURi", "display_url": "pic.twitter.com/VZxDzaiURi", "expanded_url": "https://twitter.com/JWieczorekPL/status/1448604402936389632/photo/1", "type": "photo", "original_info": {"width": 1138, "height": 640, "focus_rects": [{"x": 0, "y": 0, "h": 637, "w": 1138}, {"x": 391, "y": 0, "h": 640, "w": 640}, {"x": 431, "y": 0, "h": 640, "w": 561}, {"x": 551, "y": 0, "h": 640, "w": 320}, {"x": 0, "y": 0, "h": 640, "w": 1138}]}, "sizes": {"small": {"w": 680, "h": 382, "resize": "fit"}, "medium": {"w": 1138, "h": 640, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 1138, "h": 640, "resize": "fit"}}}, {"id": 1448604394015105027, "id_str": "1448604394015105027", "indices": [114, 137], "media_url": "http://pbs.twimg.com/media/FBp6BXVXIAMWhWn.jpg", "media_url_https": "https://pbs.twimg.com/media/FBp6BXVXIAMWhWn.jpg", "url": "https://t.co/VZxDzaiURi", "display_url": "pic.twitter.com/VZxDzaiURi", "expanded_url": "https://twitter.com/JWieczorekPL/status/1448604402936389632/photo/1", "type": "photo", "original_info": {"width": 1138, "height": 640, "focus_rects": [{"x": 0, "y": 0, "h": 637, "w": 1138}, {"x": 498, "y": 0, "h": 640, "w": 640}, {"x": 577, "y": 0, "h": 640, "w": 561}, {"x": 818, "y": 0, "h": 640, "w": 320}, {"x": 0, "y": 0, "h": 640, "w": 1138}]}, "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 1138, "h": 640, "resize": "fit"}, "large": {"w": 1138, "h": 640, "resize": "fit"}, "small": {"w": 680, "h": 382, "resize": "fit"}}}, {"id": 1448604394505789442, "id_str": "1448604394505789442", "indices": [114, 137], "media_url": "http://pbs.twimg.com/media/FBp6BZKWYAIDZC0.jpg", "media_url_https": "https://pbs.twimg.com/media/FBp6BZKWYAIDZC0.jpg", "url": "https://t.co/VZxDzaiURi", "display_url": "pic.twitter.com/VZxDzaiURi", "expanded_url": "https://twitter.com/JWieczorekPL/status/1448604402936389632/photo/1", "type": "photo", "original_info": {"width": 1138, "height": 640, "focus_rects": [{"x": 0, "y": 0, "h": 637, "w": 1138}, {"x": 498, "y": 0, "h": 640, "w": 640}, {"x": 577, "y": 0, "h": 640, "w": 561}, {"x": 721, "y": 0, "h": 640, "w": 320}, {"x": 0, "y": 0, "h": 640, "w": 1138}]}, "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 680, "h": 382, "resize": "fit"}, "large": {"w": 1138, "h": 640, "resize": "fit"}, "medium": {"w": 1138, "h": 640, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 1448604392781910016, "id_str": "1448604392781910016", "indices": [114, 137], "media_url": "http://pbs.twimg.com/media/FBp6BSvWEAAQbN3.jpg", "media_url_https": "https://pbs.twimg.com/media/FBp6BSvWEAAQbN3.jpg", "url": "https://t.co/VZxDzaiURi", "display_url": "pic.twitter.com/VZxDzaiURi", "expanded_url": "https://twitter.com/JWieczorekPL/status/1448604402936389632/photo/1", "type": "photo", "original_info": {"width": 1138, "height": 640, "focus_rects": [{"x": 0, "y": 3, "h": 637, "w": 1138}, {"x": 163, "y": 0, "h": 640, "w": 640}, {"x": 203, "y": 0, "h": 640, "w": 561}, {"x": 323, "y": 0, "h": 640, "w": 320}, {"x": 0, "y": 0, "h": 640, "w": 1138}]}, "sizes": {"large": {"w": 1138, "h": 640, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 680, "h": 382, "resize": "fit"}, "medium": {"w": 1138, "h": 640, "resize": "fit"}}, "media_key": "3_1448604392781910016", "ext_alt_text": null, "ext_media_availability": {"status": "available"}, "ext_media_color": {"palette": [{"rgb": {"red": 57, "green": 78, "blue": 95}, "percentage": 74.38}, {"rgb": {"red": 13, "green": 64, "blue": 129}, "percentage": 17.12}, {"rgb": {"red": 176, "green": 189, "blue": 205}, "percentage": 3.5}, {"rgb": {"red": 59, "green": 68, "blue": 75}, "percentage": 1.57}, {"rgb": {"red": 246, "green": 245, "blue": 5}, "percentage": 0.53}]}, "ext": {"mediaStats": {"r": "Missing", "ttl": -1}}}, {"id": 1448604393482465280, "id_str": "1448604393482465280", "indices": [114, 137], "media_url": "http://pbs.twimg.com/media/FBp6BVWXsAAxewu.jpg", "media_url_https": "https://pbs.twimg.com/media/FBp6BVWXsAAxewu.jpg", "url": "https://t.co/VZxDzaiURi", "display_url": "pic.twitter.com/VZxDzaiURi", "expanded_url": "https://twitter.com/JWieczorekPL/status/1448604402936389632/photo/1", "type": "photo", "original_info": {"width": 1138, "height": 640, "focus_rects": [{"x": 0, "y": 0, "h": 637, "w": 1138}, {"x": 391, "y": 0, "h": 640, "w": 640}, {"x": 431, "y": 0, "h": 640, "w": 561}, {"x": 551, "y": 0, "h": 640, "w": 320}, {"x": 0, "y": 0, "h": 640, "w": 1138}]}, "sizes": {"small": {"w": 680, "h": 382, "resize": "fit"}, "medium": {"w": 1138, "h": 640, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 1138, "h": 640, "resize": "fit"}}, "media_key": "3_1448604393482465280", "ext_alt_text": null, "ext_media_availability": {"status": "available"}, "ext_media_color": {"palette": [{"rgb": {"red": 72, "green": 73, "blue": 72}, "percentage": 45.11}, {"rgb": {"red": 242, "green": 242, "blue": 242}, "percentage": 28.6}, {"rgb": {"red": 33, "green": 48, "blue": 107}, "percentage": 13.73}, {"rgb": {"red": 220, "green": 15, "blue": 15}, "percentage": 4.42}, {"rgb": {"red": 230, "green": 101, "blue": 101}, "percentage": 2.13}]}, "ext": {"mediaStats": {"r": "Missing", "ttl": -1}}}, {"id": 1448604394015105027, "id_str": "1448604394015105027", "indices": [114, 137], "media_url": "http://pbs.twimg.com/media/FBp6BXVXIAMWhWn.jpg", "media_url_https": "https://pbs.twimg.com/media/FBp6BXVXIAMWhWn.jpg", "url": "https://t.co/VZxDzaiURi", "display_url": "pic.twitter.com/VZxDzaiURi", "expanded_url": "https://twitter.com/JWieczorekPL/status/1448604402936389632/photo/1", "type": "photo", "original_info": {"width": 1138, "height": 640, "focus_rects": [{"x": 0, "y": 0, "h": 637, "w": 1138}, {"x": 498, "y": 0, "h": 640, "w": 640}, {"x": 577, "y": 0, "h": 640, "w": 561}, {"x": 818, "y": 0, "h": 640, "w": 320}, {"x": 0, "y": 0, "h": 640, "w": 1138}]}, "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 1138, "h": 640, "resize": "fit"}, "large": {"w": 1138, "h": 640, "resize": "fit"}, "small": {"w": 680, "h": 382, "resize": "fit"}}, "media_key": "3_1448604394015105027", "ext_alt_text": null, "ext_media_availability": {"status": "available"}, "ext_media_color": {"palette": [{"rgb": {"red": 218, "green": 218, "blue": 221}, "percentage": 70.15}, {"rgb": {"red": 33, "green": 48, "blue": 107}, "percentage": 15.91}, {"rgb": {"red": 125, "green": 199, "blue": 228}, "percentage": 3.26}, {"rgb": {"red": 251, "green": 234, "blue": 186}, "percentage": 1.22}, {"rgb": {"red": 255, "green": 255, "blue": 1}, "percentage": 0.91}]}, "ext": {"mediaStats": {"r": "Missing", "ttl": -1}}}, {"id": 1448604394505789442, "id_str": "1448604394505789442", "indices": [114, 137], "media_url": "http://pbs.twimg.com/media/FBp6BZKWYAIDZC0.jpg", "media_url_https": "https://pbs.twimg.com/media/FBp6BZKWYAIDZC0.jpg", "url": "https://t.co/VZxDzaiURi", "display_url": "pic.twitter.com/VZxDzaiURi", "expanded_url": "https://twitter.com/JWieczorekPL/status/1448604402936389632/photo/1", "type": "photo", "original_info": {"width": 1138, "height": 640, "focus_rects": [{"x": 0, "y": 0, "h": 637, "w": 1138}, {"x": 498, "y": 0, "h": 640, "w": 640}, {"x": 577, "y": 0, "h": 640, "w": 561}, {"x": 721, "y": 0, "h": 640, "w": 320}, {"x": 0, "y": 0, "h": 640, "w": 1138}]}, "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 680, "h": 382, "resize": "fit"}, "large": {"w": 1138, "h": 640, "resize": "fit"}, "medium": {"w": 1138, "h": 640, "resize": "fit"}}, "media_key": "3_1448604394505789442", "ext_alt_text": null, "ext_media_availability": {"status": "available"}, "ext_media_color": {"palette": [{"rgb": {"red": 226, "green": 226, "blue": 226}, "percentage": 72.66}, {"rgb": {"red": 33, "green": 48, "blue": 107}, "percentage": 13.72}, {"rgb": {"red": 219, "green": 106, "blue": 21}, "percentage": 4.0}, {"rgb": {"red": 236, "green": 191, "blue": 160}, "percentage": 3.55}, {"rgb": {"red": 230, "green": 150, "blue": 90}, "percentage": 1.94}]}, "ext": {"mediaStats": {"r": "Missing", "ttl": -1}}}]}, "source": "<a href=\"https://mobile.twitter.com\" rel=\"nofollow\">Twitter Web App</a>", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user_id": 879646125208285185, "user_id_str": "879646125208285185", "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 1, "favorite_count": 1, "reply_count": 0, "quote_count": 0, "conversation_id": 1448604402936389632, "conversation_id_str": "1448604402936389632", "favorited": false, "retweeted": false, "possibly_sensitive": false, "possibly_sensitive_editable": true, "lang": "pl", "supplemental_language": null}}
{"object_type": "TweetRaw", "download_datetime": "2021-10-14T13:13:22.755897+02:00", "raw_value": {"created_at": "Thu Oct 14 00:41:10 +0000 2021", "id": 1448448760758013955, "id_str": "1448448760758013955", "full_text": "LOL! Pami\u0119tajcie dzieciaczki, #covid19 rozprzestrzenia si\u0119 tylko na prawackich marszach. Lewackie marsze maj\u0105 specjaln\u0105 ochron\u0119 antywirusowych midiflorian\u00f3w. Jestem biologiem, to moja profesjonalna opinia. \ud83e\udd21", "truncated": false, "display_text_range": [0, 207], "entities": {"hashtags": [{"text": "covid19", "indices": [30, 38]}], "symbols": [], "user_mentions": [], "urls": []}, "source": "<a href=\"https://mobile.twitter.com\" rel=\"nofollow\">Twitter Web App</a>", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user_id": 1378376877413437440, "user_id_str": "1378376877413437440", "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1448272522416435201, "quoted_status_id_str": "1448272522416435201", "quoted_status_permalink": {"url": "https://t.co/xOZGmaRFTV", "expanded": "https://twitter.com/rzeczpospolita/status/1448272522416435201", "display": "twitter.com/rzeczpospolita\u2026"}, "retweet_count": 0, "favorite_count": 2, "reply_count": 0, "quote_count": 0, "conversation_id": 1448448760758013955, "conversation_id_str": "1448448760758013955", "favorited": false, "retweeted": false, "lang": "pl", "supplemental_language": null}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:22.760113+02:00", "raw_value": {"id": 1251574134, "id_str": "1251574134", "name": "glos.live", "screen_name": "gloslivezaolzie", "location": "Czechy", "description": "Gazeta Polak\u00f3w w Republice Czeskiej", "url": "https://t.co/w7ZNnlsrTe", "entities": {"url": {"urls": [{"url": "https://t.co/w7ZNnlsrTe", "expanded_url": "http://www.glos.live", "display_url": "glos.live", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 371, "fast_followers_count": 0, "normal_followers_count": 371, "friends_count": 255, "listed_count": 5, "created_at": "Fri Mar 08 12:21:47 +0000 2013", "favourites_count": 384, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 4951, "media_count": 4363, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1374031660421943296/wiyYve1O_normal.png", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1374031660421943296/wiyYve1O_normal.png", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1251574134/1616429651", "profile_image_extensions_alt_text": null, "profile_image_extensions_media_availability": null, "profile_image_extensions_media_color": {"palette": [{"rgb": {"red": 255, "green": 255, "blue": 255}, "percentage": 72.16}, {"rgb": {"red": 3, "green": 4, "blue": 5}, "percentage": 25.33}, {"rgb": {"red": 226, "green": 13, "blue": 19}, "percentage": 1.78}]}, "profile_image_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_banner_extensions_alt_text": null, "profile_banner_extensions_media_availability": null, "profile_banner_extensions_media_color": {"palette": [{"rgb": {"red": 255, "green": 255, "blue": 255}, "percentage": 97.71}, {"rgb": {"red": 36, "green": 37, "blue": 38}, "percentage": 1.56}]}, "profile_banner_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_link_color": "C30000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "pinned_tweet_ids": [], "pinned_tweet_ids_str": [], "has_custom_timelines": false, "can_dm": null, "following": null, "follow_request_sent": null, "notifications": null, "muting": null, "blocking": null, "blocked_by": null, "want_retweets": null, "advertiser_account_type": "promotable_user", "advertiser_account_service_levels": ["analytics"], "profile_interstitial_type": "", "business_profile_state": "none", "translator_type": "none", "withheld_in_countries": [], "followed_by": null, "ext": {"highlightedLabel": {"r": {"ok": {}}, "ttl": -1}}, "require_some_consent": false}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:22.760268+02:00", "raw_value": {"id": 90422822, "id_str": "90422822", "name": "Ohio Dept of Health", "screen_name": "OHdeptofhealth", "location": "Ohio", "description": "Protecting and improving the health of all Ohioans. RTs/Follows/Likes do not indicate ODH endorsements.", "url": "https://t.co/avQCazeHTt", "entities": {"url": {"urls": [{"url": "https://t.co/avQCazeHTt", "expanded_url": "http://coronavirus.ohio.gov", "display_url": "coronavirus.ohio.gov", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 96722, "fast_followers_count": 0, "normal_followers_count": 96722, "friends_count": 903, "listed_count": 638, "created_at": "Mon Nov 16 16:07:08 +0000 2009", "favourites_count": 1680, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": true, "statuses_count": 8636, "media_count": 3693, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "2E68B1", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme16/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme16/bg.gif", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1152217062162554880/8VRPH-3B_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1152217062162554880/8VRPH-3B_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/90422822/1563544930", "profile_image_extensions_alt_text": null, "profile_image_extensions_media_color": {"palette": [{"rgb": {"red": 255, "green": 255, "blue": 255}, "percentage": 96.66}, {"rgb": {"red": 113, "green": 23, "blue": 36}, "percentage": 1.39}, {"rgb": {"red": 126, "green": 126, "blue": 128}, "percentage": 1.03}, {"rgb": {"red": 228, "green": 157, "blue": 159}, "percentage": 0.38}, {"rgb": {"red": 225, "green": 57, "blue": 61}, "percentage": 0.29}]}, "profile_image_extensions_media_availability": null, "profile_image_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_banner_extensions_alt_text": null, "profile_banner_extensions_media_availability": null, "profile_banner_extensions_media_color": {"palette": [{"rgb": {"red": 116, "green": 92, "blue": 82}, "percentage": 27.02}, {"rgb": {"red": 216, "green": 210, "blue": 201}, "percentage": 20.77}, {"rgb": {"red": 178, "green": 120, "blue": 98}, "percentage": 12.43}, {"rgb": {"red": 163, "green": 148, "blue": 100}, "percentage": 7.32}, {"rgb": {"red": 185, "green": 205, "blue": 222}, "percentage": 4.71}]}, "profile_banner_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_link_color": "0084B4", "profile_sidebar_border_color": "FFFFFF", "profile_sidebar_fill_color": "DDFFCC", "profile_text_color": "333333", "profile_use_background_image": false, "has_extended_profile": false, "default_profile": false, "default_profile_image": false, "pinned_tweet_ids": [1392828222547578886], "pinned_tweet_ids_str": ["1392828222547578886"], "has_custom_timelines": false, "can_dm": null, "following": null, "follow_request_sent": null, "notifications": null, "muting": null, "blocking": null, "blocked_by": null, "want_retweets": null, "advertiser_account_type": "promotable_user", "advertiser_account_service_levels": ["mms", "mms", "mms"], "profile_interstitial_type": "", "business_profile_state": "none", "translator_type": "none", "withheld_in_countries": [], "followed_by": null, "ext": {"highlightedLabel": {"r": {"ok": {}}, "ttl": -1}}, "require_some_consent": false}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:22.760377+02:00", "raw_value": {"id": 976173218309509120, "id_str": "976173218309509120", "name": "PrawnikPoPrawnik", "screen_name": "PoPrawnik2", "location": "", "description": "?", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 5895, "fast_followers_count": 0, "normal_followers_count": 5895, "friends_count": 87, "listed_count": 13, "created_at": "Tue Mar 20 19:06:46 +0000 2018", "favourites_count": 84716, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 42640, "media_count": 8234, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "F5F8FA", "profile_background_image_url": null, "profile_background_image_url_https": null, "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1259224146514456578/AABgfTY9_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1259224146514456578/AABgfTY9_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/976173218309509120/1521573322", "profile_image_extensions_alt_text": null, "profile_image_extensions_media_availability": null, "profile_image_extensions_media_color": {"palette": [{"rgb": {"red": 197, "green": 197, "blue": 197}, "percentage": 47.1}, {"rgb": {"red": 46, "green": 46, "blue": 46}, "percentage": 34.0}]}, "profile_image_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_banner_extensions_alt_text": null, "profile_banner_extensions_media_color": {"palette": [{"rgb": {"red": 255, "green": 255, "blue": 255}, "percentage": 94.44}, {"rgb": {"red": 38, "green": 38, "blue": 38}, "percentage": 3.51}]}, "profile_banner_extensions_media_availability": null, "profile_banner_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": true, "default_profile_image": false, "pinned_tweet_ids": [1045036162736418816], "pinned_tweet_ids_str": ["1045036162736418816"], "has_custom_timelines": true, "can_dm": null, "following": null, "follow_request_sent": null, "notifications": null, "muting": null, "blocking": null, "blocked_by": null, "want_retweets": null, "advertiser_account_type": "none", "advertiser_account_service_levels": [], "profile_interstitial_type": "", "business_profile_state": "none", "translator_type": "none", "withheld_in_countries": [], "followed_by": null, "ext": {"highlightedLabel": {"r": {"ok": {}}, "ttl": -1}}, "require_some_consent": false}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:22.760497+02:00", "raw_value": {"id": 790883151774113793, "id_str": "790883151774113793", "name": "ZNP", "screen_name": "ZNP_ZG", "location": "", "description": "Najstarszy i najwi\u0119kszy, niezale\u017cny i samorz\u0105dny zwi\u0105zek zawodowy pracownik\u00f3w o\u015bwiaty i wychowania, szkolnictwa wy\u017cszego i nauki.", "url": "https://t.co/kT6pyt50AZ", "entities": {"url": {"urls": [{"url": "https://t.co/kT6pyt50AZ", "expanded_url": "http://znp.edu.pl", "display_url": "znp.edu.pl", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 9727, "fast_followers_count": 0, "normal_followers_count": 9727, "friends_count": 132, "listed_count": 25, "created_at": "Tue Oct 25 11:50:12 +0000 2016", "favourites_count": 19650, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 5587, "media_count": 1070, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "F5F8FA", "profile_background_image_url": null, "profile_background_image_url_https": null, "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/790884528336297985/xGQqmPTT_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/790884528336297985/xGQqmPTT_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/790883151774113793/1556205422", "profile_image_extensions_alt_text": null, "profile_image_extensions_media_availability": null, "profile_image_extensions_media_color": {"palette": [{"rgb": {"red": 255, "green": 255, "blue": 255}, "percentage": 52.69}, {"rgb": {"red": 143, "green": 35, "blue": 67}, "percentage": 43.48}, {"rgb": {"red": 206, "green": 153, "blue": 169}, "percentage": 3.79}]}, "profile_image_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_banner_extensions_alt_text": null, "profile_banner_extensions_media_availability": null, "profile_banner_extensions_media_color": {"palette": [{"rgb": {"red": 255, "green": 236, "blue": 58}, "percentage": 74.56}, {"rgb": {"red": 19, "green": 17, "blue": 14}, "percentage": 11.39}, {"rgb": {"red": 91, "green": 85, "blue": 38}, "percentage": 5.4}, {"rgb": {"red": 231, "green": 69, "blue": 49}, "percentage": 3.72}, {"rgb": {"red": 175, "green": 162, "blue": 65}, "percentage": 2.98}]}, "profile_banner_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": true, "default_profile_image": false, "pinned_tweet_ids": [1448295777680375812], "pinned_tweet_ids_str": ["1448295777680375812"], "has_custom_timelines": false, "can_dm": null, "following": null, "follow_request_sent": null, "notifications": null, "muting": null, "blocking": null, "blocked_by": null, "want_retweets": null, "advertiser_account_type": "promotable_user", "advertiser_account_service_levels": ["analytics"], "profile_interstitial_type": "", "business_profile_state": "none", "translator_type": "none", "withheld_in_countries": [], "followed_by": null, "ext": {"highlightedLabel": {"r": {"ok": {}}, "ttl": -1}}, "require_some_consent": false}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:22.760621+02:00", "raw_value": {"id": 1354930607567085569, "id_str": "1354930607567085569", "name": "Krystian Kie\u0142tyka", "screen_name": "kieltyka_k", "location": "POLSKA, Warsaw, P\u0142ock", "description": "Cz\u0142onek @SMDWarszawa \u00b7 @SMD_Mazowsze \u00b7 @MlodziDemokraci \u00b7 #POLSKAzNOWYMpokoleniem\ud83c\uddf5\ud83c\uddf1\ud83c\uddea\ud83c\uddfa", "url": "https://t.co/ifrnZuWCBL", "entities": {"url": {"urls": [{"url": "https://t.co/ifrnZuWCBL", "expanded_url": "https://www.facebook.com/krystiankieltyka", "display_url": "facebook.com/krystiankielty\u2026", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 181, "fast_followers_count": 0, "normal_followers_count": 181, "friends_count": 1127, "listed_count": 0, "created_at": "Thu Jan 28 23:13:40 +0000 2021", "favourites_count": 10407, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 965, "media_count": 180, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "F5F8FA", "profile_background_image_url": null, "profile_background_image_url_https": null, "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1392071057532669952/eHpu4VBH_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1392071057532669952/eHpu4VBH_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1354930607567085569/1633781601", "profile_image_extensions_alt_text": null, "profile_image_extensions_media_availability": null, "profile_image_extensions_media_color": {"palette": [{"rgb": {"red": 66, "green": 98, "blue": 34}, "percentage": 26.07}, {"rgb": {"red": 169, "green": 164, "blue": 154}, "percentage": 19.71}, {"rgb": {"red": 174, "green": 193, "blue": 236}, "percentage": 18.11}, {"rgb": {"red": 220, "green": 162, "blue": 143}, "percentage": 11.48}, {"rgb": {"red": 97, "green": 83, "blue": 62}, "percentage": 8.55}]}, "profile_image_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_banner_extensions_alt_text": null, "profile_banner_extensions_media_availability": null, "profile_banner_extensions_media_color": {"palette": [{"rgb": {"red": 128, "green": 142, "blue": 150}, "percentage": 34.41}, {"rgb": {"red": 197, "green": 161, "blue": 126}, "percentage": 31.18}, {"rgb": {"red": 96, "green": 132, "blue": 163}, "percentage": 9.97}, {"rgb": {"red": 178, "green": 140, "blue": 77}, "percentage": 4.16}, {"rgb": {"red": 234, "green": 230, "blue": 220}, "percentage": 2.27}]}, "profile_banner_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": true, "default_profile_image": false, "pinned_tweet_ids": [1421089810878537729], "pinned_tweet_ids_str": ["1421089810878537729"], "has_custom_timelines": false, "can_dm": null, "following": null, "follow_request_sent": null, "notifications": null, "muting": null, "blocking": null, "blocked_by": null, "want_retweets": null, "advertiser_account_type": "promotable_user", "advertiser_account_service_levels": ["analytics"], "profile_interstitial_type": "", "business_profile_state": "none", "translator_type": "none", "withheld_in_countries": [], "followed_by": null, "ext": {"highlightedLabel": {"r": {"ok": {}}, "ttl": -1}}, "require_some_consent": false}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:22.760735+02:00", "raw_value": {"id": 1420754113906630659, "id_str": "1420754113906630659", "name": "Mariusz", "screen_name": "Mariusz_Mistrz", "location": "", "description": "", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 30, "fast_followers_count": 0, "normal_followers_count": 30, "friends_count": 15, "listed_count": 0, "created_at": "Thu Jul 29 14:32:52 +0000 2021", "favourites_count": 855, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 2569, "media_count": 403, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "F5F8FA", "profile_background_image_url": null, "profile_background_image_url_https": null, "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1428843011778154502/cA9XFPvh_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1428843011778154502/cA9XFPvh_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1420754113906630659/1627628445", "profile_image_extensions_alt_text": null, "profile_image_extensions_media_availability": null, "profile_image_extensions_media_color": {"palette": [{"rgb": {"red": 247, "green": 241, "blue": 231}, "percentage": 82.85}, {"rgb": {"red": 13, "green": 44, "blue": 47}, "percentage": 13.84}, {"rgb": {"red": 229, "green": 50, "blue": 39}, "percentage": 1.46}, {"rgb": {"red": 165, "green": 56, "blue": 50}, "percentage": 0.29}, {"rgb": {"red": 236, "green": 169, "blue": 159}, "percentage": 0.18}]}, "profile_image_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_banner_extensions_alt_text": null, "profile_banner_extensions_media_availability": null, "profile_banner_extensions_media_color": {"palette": [{"rgb": {"red": 203, "green": 207, "blue": 208}, "percentage": 77.54}, {"rgb": {"red": 111, "green": 149, "blue": 56}, "percentage": 10.41}, {"rgb": {"red": 61, "green": 92, "blue": 29}, "percentage": 3.52}, {"rgb": {"red": 143, "green": 159, "blue": 92}, "percentage": 2.45}, {"rgb": {"red": 68, "green": 54, "blue": 33}, "percentage": 2.14}]}, "profile_banner_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": true, "default_profile_image": false, "pinned_tweet_ids": [1430678791924457475], "pinned_tweet_ids_str": ["1430678791924457475"], "has_custom_timelines": true, "can_dm": null, "following": null, "follow_request_sent": null, "notifications": null, "muting": null, "blocking": null, "blocked_by": null, "want_retweets": null, "advertiser_account_type": "none", "advertiser_account_service_levels": [], "profile_interstitial_type": "", "business_profile_state": "none", "translator_type": "none", "withheld_in_countries": [], "followed_by": null, "ext": {"highlightedLabel": {"r": {"ok": {}}, "ttl": -1}}, "require_some_consent": false}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:22.760853+02:00", "raw_value": {"id": 879646125208285185, "id_str": "879646125208285185", "name": "Wojewoda \u015al\u0105ski \ud83c\uddf5\ud83c\uddf1 #\u015aL\u0104SKIE", "screen_name": "JWieczorekPL", "location": "Katowice, Polska", "description": "Konto TT wojewody \u015bl\u0105skiego Jaros\u0142awa Wieczorka", "url": "https://t.co/4CShpk0Xtb", "entities": {"url": {"urls": [{"url": "https://t.co/4CShpk0Xtb", "expanded_url": "http://www.katowice.uw.gov.pl", "display_url": "katowice.uw.gov.pl", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 784, "fast_followers_count": 0, "normal_followers_count": 784, "friends_count": 55, "listed_count": 3, "created_at": "Tue Jun 27 10:22:34 +0000 2017", "favourites_count": 1879, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 2985, "media_count": 1027, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "F5F8FA", "profile_background_image_url": null, "profile_background_image_url_https": null, "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/879649004736458752/sUtla2iQ_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/879649004736458752/sUtla2iQ_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/879646125208285185/1498559617", "profile_image_extensions_media_color": {"palette": [{"rgb": {"red": 217, "green": 221, "blue": 230}, "percentage": 51.2}, {"rgb": {"red": 41, "green": 45, "blue": 57}, "percentage": 18.59}, {"rgb": {"red": 43, "green": 81, "blue": 130}, "percentage": 13.97}, {"rgb": {"red": 216, "green": 157, "blue": 143}, "percentage": 1.69}, {"rgb": {"red": 254, "green": 0, "blue": 65}, "percentage": 1.15}]}, "profile_image_extensions_alt_text": null, "profile_image_extensions_media_availability": null, "profile_image_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_banner_extensions_alt_text": null, "profile_banner_extensions_media_availability": null, "profile_banner_extensions_media_color": {"palette": [{"rgb": {"red": 3, "green": 81, "blue": 194}, "percentage": 68.13}, {"rgb": {"red": 44, "green": 120, "blue": 200}, "percentage": 10.05}, {"rgb": {"red": 4, "green": 13, "blue": 76}, "percentage": 4.4}, {"rgb": {"red": 2, "green": 58, "blue": 181}, "percentage": 4.09}, {"rgb": {"red": 217, "green": 222, "blue": 230}, "percentage": 3.11}]}, "profile_banner_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": true, "default_profile_image": false, "pinned_tweet_ids": [], "pinned_tweet_ids_str": [], "has_custom_timelines": false, "can_dm": null, "following": null, "follow_request_sent": null, "notifications": null, "muting": null, "blocking": null, "blocked_by": null, "want_retweets": null, "advertiser_account_type": "none", "advertiser_account_service_levels": [], "profile_interstitial_type": "", "business_profile_state": "none", "translator_type": "none", "withheld_in_countries": [], "followed_by": null, "ext": {"highlightedLabel": {"r": {"ok": {}}, "ttl": -1}}, "require_some_consent": false}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:22.760980+02:00", "raw_value": {"id": 1378376877413437440, "id_str": "1378376877413437440", "name": "Bi przeciwko \u015bwiatu: Niewola babilo\u0144ska", "screen_name": "realBPSNB", "location": "Poland", "description": "Naukowiec, aposto\u0142 zdrowego rozs\u0105dku, dziennikarka prze\u015bmiewcza, superbi. Krocz\u0119 mi\u0119dzy prawic\u0105 i lewic\u0105, cz\u0119sto nie wierz\u0105c w to co widz\u0119. PL/EN", "url": "https://t.co/uaDyGnIt5j", "entities": {"url": {"urls": [{"url": "https://t.co/uaDyGnIt5j", "expanded_url": "https://gab.com/bpsnb", "display_url": "gab.com/bpsnb", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 589, "fast_followers_count": 0, "normal_followers_count": 589, "friends_count": 396, "listed_count": 0, "created_at": "Sat Apr 03 16:00:37 +0000 2021", "favourites_count": 142, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 6206, "media_count": 1197, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "F5F8FA", "profile_background_image_url": null, "profile_background_image_url_https": null, "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1378377201750581249/Id523JXm_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1378377201750581249/Id523JXm_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1378376877413437440/1617466492", "profile_image_extensions_alt_text": null, "profile_image_extensions_media_color": {"palette": [{"rgb": {"red": 8, "green": 0, "blue": 241}, "percentage": 43.74}, {"rgb": {"red": 220, "green": 23, "blue": 188}, "percentage": 43.43}, {"rgb": {"red": 252, "green": 252, "blue": 250}, "percentage": 9.44}, {"rgb": {"red": 241, "green": 190, "blue": 233}, "percentage": 0.91}, {"rgb": {"red": 73, "green": 67, "blue": 222}, "percentage": 0.45}]}, "profile_image_extensions_media_availability": null, "profile_image_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_banner_extensions_alt_text": null, "profile_banner_extensions_media_availability": null, "profile_banner_extensions_media_color": {"palette": [{"rgb": {"red": 47, "green": 54, "blue": 27}, "percentage": 46.24}, {"rgb": {"red": 194, "green": 198, "blue": 209}, "percentage": 39.68}, {"rgb": {"red": 75, "green": 82, "blue": 30}, "percentage": 7.14}, {"rgb": {"red": 108, "green": 111, "blue": 95}, "percentage": 5.96}, {"rgb": {"red": 104, "green": 105, "blue": 107}, "percentage": 2.11}]}, "profile_banner_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": true, "default_profile_image": false, "pinned_tweet_ids": [1448409537313136642], "pinned_tweet_ids_str": ["1448409537313136642"], "has_custom_timelines": true, "can_dm": null, "following": null, "follow_request_sent": null, "notifications": null, "muting": null, "blocking": null, "blocked_by": null, "want_retweets": null, "advertiser_account_type": "none", "advertiser_account_service_levels": [], "profile_interstitial_type": "", "business_profile_state": "none", "translator_type": "none", "withheld_in_countries": [], "followed_by": null, "ext": {"highlightedLabel": {"r": {"ok": {}}, "ttl": -1}}, "require_some_consent": false}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:22.761101+02:00", "raw_value": {"id": 3978393137, "id_str": "3978393137", "name": "Tomek Niew\u0119g\u0142owski #MAGA", "screen_name": "Tomek525", "location": "Warszawa, Polska", "description": "Konto w\u0142asne, osoby mojej...\ud83c\uddf5\ud83c\uddf1                  WARSZAWA \nGettr Tomek525 \nGab Tomek323", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 1605, "fast_followers_count": 0, "normal_followers_count": 1605, "friends_count": 202, "listed_count": 7, "created_at": "Sat Oct 17 09:08:41 +0000 2015", "favourites_count": 20256, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 69823, "media_count": 3476, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1432962350739505154/NmuGb6ku_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1432962350739505154/NmuGb6ku_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/3978393137/1611593869", "profile_image_extensions_alt_text": null, "profile_image_extensions_media_availability": null, "profile_image_extensions_media_color": {"palette": [{"rgb": {"red": 41, "green": 40, "blue": 53}, "percentage": 41.57}, {"rgb": {"red": 151, "green": 146, "blue": 150}, "percentage": 36.94}, {"rgb": {"red": 114, "green": 126, "blue": 134}, "percentage": 4.91}, {"rgb": {"red": 164, "green": 177, "blue": 141}, "percentage": 2.29}, {"rgb": {"red": 128, "green": 106, "blue": 105}, "percentage": 1.68}]}, "profile_image_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_banner_extensions_alt_text": null, "profile_banner_extensions_media_availability": null, "profile_banner_extensions_media_color": {"palette": [{"rgb": {"red": 255, "green": 255, "blue": 255}, "percentage": 59.03}, {"rgb": {"red": 30, "green": 30, "blue": 42}, "percentage": 12.48}, {"rgb": {"red": 228, "green": 57, "blue": 30}, "percentage": 9.34}, {"rgb": {"red": 234, "green": 136, "blue": 118}, "percentage": 7.05}, {"rgb": {"red": 209, "green": 161, "blue": 127}, "percentage": 5.0}]}, "profile_banner_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_link_color": "19CF86", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "has_extended_profile": false, "default_profile": false, "default_profile_image": false, "pinned_tweet_ids": [1375872263631814662], "pinned_tweet_ids_str": ["1375872263631814662"], "has_custom_timelines": true, "can_dm": null, "following": null, "follow_request_sent": null, "notifications": null, "muting": null, "blocking": null, "blocked_by": null, "want_retweets": null, "advertiser_account_type": "promotable_user", "advertiser_account_service_levels": [], "profile_interstitial_type": "", "business_profile_state": "none", "translator_type": "none", "withheld_in_countries": [], "followed_by": null, "ext": {"highlightedLabel": {"r": {"ok": {}}, "ttl": -1}}, "require_some_consent": false}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:22.761215+02:00", "raw_value": {"id": 1238135818826518528, "id_str": "1238135818826518528", "name": "Dunder Mifflin #COVID19", "screen_name": "dmifflin2020", "location": "", "description": "What would an episode of @theofficenbc look like during the coronavirus outbreak? DM suggestions only from quarantine. Thank you essential workers! *PARODY*", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 12845, "fast_followers_count": 0, "normal_followers_count": 12845, "friends_count": 1, "listed_count": 46, "created_at": "Thu Mar 12 16:12:50 +0000 2020", "favourites_count": 8, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 96, "media_count": 5, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "F5F8FA", "profile_background_image_url": null, "profile_background_image_url_https": null, "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1238214438806839296/2PuSj7Cy_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1238214438806839296/2PuSj7Cy_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1238135818826518528/1584035235", "profile_image_extensions_alt_text": null, "profile_image_extensions_media_availability": null, "profile_image_extensions_media_color": {"palette": [{"rgb": {"red": 255, "green": 255, "blue": 255}, "percentage": 75.76}, {"rgb": {"red": 18, "green": 18, "blue": 18}, "percentage": 21.58}, {"rgb": {"red": 120, "green": 120, "blue": 120}, "percentage": 3.73}]}, "profile_image_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_banner_extensions_alt_text": null, "profile_banner_extensions_media_availability": null, "profile_banner_extensions_media_color": {"palette": [{"rgb": {"red": 62, "green": 59, "blue": 63}, "percentage": 54.49}, {"rgb": {"red": 164, "green": 156, "blue": 153}, "percentage": 21.49}, {"rgb": {"red": 158, "green": 130, "blue": 110}, "percentage": 11.66}, {"rgb": {"red": 140, "green": 156, "blue": 185}, "percentage": 1.04}, {"rgb": {"red": 105, "green": 87, "blue": 75}, "percentage": 0.85}]}, "profile_banner_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": true, "default_profile_image": false, "pinned_tweet_ids": [1238161920311660545], "pinned_tweet_ids_str": ["1238161920311660545"], "has_custom_timelines": false, "can_dm": null, "following": null, "follow_request_sent": null, "notifications": null, "muting": null, "blocking": null, "blocked_by": null, "want_retweets": null, "advertiser_account_type": "promotable_user", "advertiser_account_service_levels": ["analytics"], "profile_interstitial_type": "", "business_profile_state": "none", "translator_type": "none", "withheld_in_countries": [], "followed_by": null, "ext": {"highlightedLabel": {"r": {"ok": {}}, "ttl": -1}}, "require_some_consent": false}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:22.761336+02:00", "raw_value": {"id": 218189019, "id_str": "218189019", "name": "\ud83c\uddf5\ud83c\uddf1 \ud83d\udcafprokop", "screen_name": "prokophm", "location": "", "description": "\u201cOf every ten persons who talk about you, nine will say something bad, and the tenth will say something good in a bad way\u201d- Antoine de Rivarol", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 108, "fast_followers_count": 0, "normal_followers_count": 108, "friends_count": 196, "listed_count": 1, "created_at": "Sun Nov 21 17:31:02 +0000 2010", "favourites_count": 2548, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 7712, "media_count": 2587, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1187062234494750725/tRX_BPz7_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1187062234494750725/tRX_BPz7_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/218189019/1571776727", "profile_image_extensions_alt_text": null, "profile_image_extensions_media_availability": null, "profile_image_extensions_media_color": {"palette": [{"rgb": {"red": 197, "green": 189, "blue": 190}, "percentage": 36.82}, {"rgb": {"red": 66, "green": 52, "blue": 45}, "percentage": 30.05}, {"rgb": {"red": 134, "green": 112, "blue": 104}, "percentage": 15.87}, {"rgb": {"red": 87, "green": 86, "blue": 110}, "percentage": 10.91}, {"rgb": {"red": 201, "green": 151, "blue": 48}, "percentage": 1.76}]}, "profile_image_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_banner_extensions_alt_text": null, "profile_banner_extensions_media_availability": null, "profile_banner_extensions_media_color": {"palette": [{"rgb": {"red": 132, "green": 135, "blue": 116}, "percentage": 47.84}, {"rgb": {"red": 126, "green": 144, "blue": 150}, "percentage": 19.13}, {"rgb": {"red": 32, "green": 16, "blue": 16}, "percentage": 11.37}, {"rgb": {"red": 211, "green": 126, "blue": 75}, "percentage": 7.36}, {"rgb": {"red": 161, "green": 131, "blue": 84}, "percentage": 5.01}]}, "profile_banner_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": true, "default_profile_image": false, "pinned_tweet_ids": [1309179238122229760], "pinned_tweet_ids_str": ["1309179238122229760"], "has_custom_timelines": true, "can_dm": null, "following": null, "follow_request_sent": null, "notifications": null, "muting": null, "blocking": null, "blocked_by": null, "want_retweets": null, "advertiser_account_type": "promotable_user", "advertiser_account_service_levels": [], "profile_interstitial_type": "", "business_profile_state": "none", "translator_type": "none", "withheld_in_countries": [], "followed_by": null, "ext": {"highlightedLabel": {"r": {"ok": {}}, "ttl": -1}}, "require_some_consent": false}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:22.761460+02:00", "raw_value": {"id": 1237526605108518913, "id_str": "1237526605108518913", "name": "medexit", "screen_name": "medexit", "location": "PLAN OGRANICZENIA ZGON\u00d3W:", "description": "Cz\u0142owiek wstrz\u0105\u015bni\u0119ty i zmieszany brakiem zarz\u0105dzania pandemi\u0105 w Polsce. Lekarz, specjalista chor\u00f3b zaka\u017anych, nauczyciel akademicki, MD, PhD.", "url": "https://t.co/2TVRHEhEPz", "entities": {"url": {"urls": [{"url": "https://t.co/2TVRHEhEPz", "expanded_url": "http://www.twitlonger.com/show/n_1srpdqu", "display_url": "twitlonger.com/show/n_1srpdqu", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 1218, "fast_followers_count": 0, "normal_followers_count": 1218, "friends_count": 2492, "listed_count": 2, "created_at": "Tue Mar 10 23:52:53 +0000 2020", "favourites_count": 5505, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 3188, "media_count": 101, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "F5F8FA", "profile_background_image_url": null, "profile_background_image_url_https": null, "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1421970483516477445/OTBngSXc_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1421970483516477445/OTBngSXc_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1237526605108518913/1627859162", "profile_image_extensions_media_color": {"palette": [{"rgb": {"red": 35, "green": 36, "blue": 84}, "percentage": 77.04}, {"rgb": {"red": 52, "green": 53, "blue": 121}, "percentage": 12.95}, {"rgb": {"red": 18, "green": 21, "blue": 37}, "percentage": 7.37}, {"rgb": {"red": 82, "green": 145, "blue": 194}, "percentage": 2.06}, {"rgb": {"red": 25, "green": 26, "blue": 45}, "percentage": 0.22}]}, "profile_image_extensions_alt_text": null, "profile_image_extensions_media_availability": null, "profile_image_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_banner_extensions_alt_text": null, "profile_banner_extensions_media_availability": null, "profile_banner_extensions_media_color": {"palette": [{"rgb": {"red": 124, "green": 102, "blue": 89}, "percentage": 85.12}, {"rgb": {"red": 186, "green": 174, "blue": 158}, "percentage": 6.34}, {"rgb": {"red": 65, "green": 59, "blue": 55}, "percentage": 6.1}, {"rgb": {"red": 82, "green": 81, "blue": 83}, "percentage": 1.89}, {"rgb": {"red": 100, "green": 100, "blue": 90}, "percentage": 0.31}]}, "profile_banner_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": true, "default_profile_image": false, "pinned_tweet_ids": [1423726542337761289], "pinned_tweet_ids_str": ["1423726542337761289"], "has_custom_timelines": false, "can_dm": null, "following": null, "follow_request_sent": null, "notifications": null, "muting": null, "blocking": null, "blocked_by": null, "want_retweets": null, "advertiser_account_type": "none", "advertiser_account_service_levels": [], "profile_interstitial_type": "", "business_profile_state": "none", "translator_type": "none", "withheld_in_countries": [], "followed_by": null, "ext": {"highlightedLabel": {"r": {"ok": {}}, "ttl": -1}}, "require_some_consent": false}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:22.761576+02:00", "raw_value": {"id": 1032634489208496128, "id_str": "1032634489208496128", "name": "Krzysztof Piotr Skolimowski", "screen_name": "Krzyszt26332900", "location": "Warszawa ", "description": "Polityk PO, samorz\u0105dowiec, Przewodnicz\u0105cy Komisji Edukacji, Nauki i Szkolnictwa Wy\u017cszego Sejmiku Wojew\u00f3dztwa Mazowieckiego\nZast\u0119pca Burmistrza Dzielnicy Mokot\u00f3w", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 215, "fast_followers_count": 0, "normal_followers_count": 215, "friends_count": 68, "listed_count": 0, "created_at": "Thu Aug 23 14:23:42 +0000 2018", "favourites_count": 7884, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 1721, "media_count": 184, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "F5F8FA", "profile_background_image_url": null, "profile_background_image_url_https": null, "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1033290968685006849/NaMVnVhp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1033290968685006849/NaMVnVhp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1032634489208496128/1589996688", "profile_image_extensions_alt_text": null, "profile_image_extensions_media_availability": null, "profile_image_extensions_media_color": {"palette": [{"rgb": {"red": 231, "green": 227, "blue": 237}, "percentage": 41.16}, {"rgb": {"red": 59, "green": 55, "blue": 48}, "percentage": 17.58}, {"rgb": {"red": 102, "green": 107, "blue": 65}, "percentage": 13.7}, {"rgb": {"red": 215, "green": 170, "blue": 141}, "percentage": 8.8}, {"rgb": {"red": 222, "green": 153, "blue": 124}, "percentage": 2.6}]}, "profile_image_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_banner_extensions_media_color": {"palette": [{"rgb": {"red": 21, "green": 73, "blue": 123}, "percentage": 49.98}, {"rgb": {"red": 132, "green": 83, "blue": 64}, "percentage": 16.35}, {"rgb": {"red": 195, "green": 197, "blue": 221}, "percentage": 15.97}, {"rgb": {"red": 98, "green": 129, "blue": 176}, "percentage": 6.1}, {"rgb": {"red": 43, "green": 41, "blue": 42}, "percentage": 5.21}]}, "profile_banner_extensions_alt_text": null, "profile_banner_extensions_media_availability": null, "profile_banner_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": true, "default_profile_image": false, "pinned_tweet_ids": [], "pinned_tweet_ids_str": [], "has_custom_timelines": false, "can_dm": null, "following": null, "follow_request_sent": null, "notifications": null, "muting": null, "blocking": null, "blocked_by": null, "want_retweets": null, "advertiser_account_type": "none", "advertiser_account_service_levels": [], "profile_interstitial_type": "", "business_profile_state": "none", "translator_type": "none", "withheld_in_countries": [], "followed_by": null, "ext": {"highlightedLabel": {"r": {"ok": {}}, "ttl": -1}}, "require_some_consent": false}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:22.761696+02:00", "raw_value": {"id": 130081074, "id_str": "130081074", "name": "Wojciech Bolanowski", "screen_name": "WBolanowski", "location": "", "description": "https://t.co/57IfpBOCtH", "url": "https://t.co/57IfpBOCtH", "entities": {"url": {"urls": [{"url": "https://t.co/57IfpBOCtH", "expanded_url": "http://digitalbankology.com", "display_url": "digitalbankology.com", "indices": [0, 23]}]}, "description": {"urls": [{"url": "https://t.co/57IfpBOCtH", "expanded_url": "http://digitalbankology.com", "display_url": "digitalbankology.com", "indices": [0, 23]}]}}, "protected": false, "followers_count": 428, "fast_followers_count": 0, "normal_followers_count": 428, "friends_count": 206, "listed_count": 38, "created_at": "Tue Apr 06 07:24:13 +0000 2010", "favourites_count": 240, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 7709, "media_count": 2438, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "3C3B6E", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1125852058094120961/6p0VrfXF_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1125852058094120961/6p0VrfXF_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/130081074/1629442812", "profile_image_extensions_alt_text": null, "profile_image_extensions_media_availability": null, "profile_image_extensions_media_color": {"palette": [{"rgb": {"red": 220, "green": 221, "blue": 227}, "percentage": 42.82}, {"rgb": {"red": 20, "green": 20, "blue": 20}, "percentage": 41.55}, {"rgb": {"red": 135, "green": 102, "blue": 85}, "percentage": 10.1}, {"rgb": {"red": 117, "green": 120, "blue": 126}, "percentage": 5.1}, {"rgb": {"red": 9, "green": 21, "blue": 37}, "percentage": 0.85}]}, "profile_image_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_banner_extensions_alt_text": null, "profile_banner_extensions_media_availability": null, "profile_banner_extensions_media_color": {"palette": [{"rgb": {"red": 185, "green": 161, "blue": 149}, "percentage": 69.51}, {"rgb": {"red": 112, "green": 93, "blue": 91}, "percentage": 27.78}, {"rgb": {"red": 193, "green": 152, "blue": 124}, "percentage": 1.93}]}, "profile_banner_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_link_color": "B22234", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": false, "default_profile_image": false, "pinned_tweet_ids": [1446829246589116420], "pinned_tweet_ids_str": ["1446829246589116420"], "has_custom_timelines": true, "can_dm": null, "following": null, "follow_request_sent": null, "notifications": null, "muting": null, "blocking": null, "blocked_by": null, "want_retweets": null, "advertiser_account_type": "promotable_user", "advertiser_account_service_levels": ["analytics"], "profile_interstitial_type": "", "business_profile_state": "none", "translator_type": "none", "withheld_in_countries": [], "followed_by": null, "ext": {"highlightedLabel": {"r": {"ok": {}}, "ttl": -1}}, "require_some_consent": false}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:22.761826+02:00", "raw_value": {"id": 215436051, "id_str": "215436051", "name": "Grzegorz Gielerak", "screen_name": "GGielerak", "location": "Warszawa", "description": "Dyrektor Wojskowego Instytutu Medycznego, gen. dyw. prof. dr hab. n. med.", "url": "https://t.co/8Fwy6CGIbc", "entities": {"url": {"urls": [{"url": "https://t.co/8Fwy6CGIbc", "expanded_url": "http://www.wim.mil.pl", "display_url": "wim.mil.pl", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 2272, "fast_followers_count": 0, "normal_followers_count": 2272, "friends_count": 608, "listed_count": 9, "created_at": "Sat Nov 13 23:02:37 +0000 2010", "favourites_count": 1540, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 1483, "media_count": 104, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1434046209719783425/M7BVkvjX_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1434046209719783425/M7BVkvjX_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/215436051/1483460584", "profile_image_extensions_alt_text": null, "profile_image_extensions_media_availability": null, "profile_image_extensions_media_color": {"palette": [{"rgb": {"red": 60, "green": 52, "blue": 51}, "percentage": 69.02}, {"rgb": {"red": 211, "green": 190, "blue": 196}, "percentage": 11.43}, {"rgb": {"red": 155, "green": 175, "blue": 210}, "percentage": 5.24}, {"rgb": {"red": 47, "green": 56, "blue": 73}, "percentage": 4.14}, {"rgb": {"red": 23, "green": 32, "blue": 80}, "percentage": 0.46}]}, "profile_image_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_banner_extensions_alt_text": null, "profile_banner_extensions_media_availability": null, "profile_banner_extensions_media_color": {"palette": [{"rgb": {"red": 251, "green": 252, "blue": 254}, "percentage": 73.18}, {"rgb": {"red": 62, "green": 52, "blue": 33}, "percentage": 20.62}, {"rgb": {"red": 152, "green": 118, "blue": 97}, "percentage": 2.74}, {"rgb": {"red": 64, "green": 54, "blue": 29}, "percentage": 0.42}, {"rgb": {"red": 169, "green": 81, "blue": 72}, "percentage": 0.34}]}, "profile_banner_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": true, "default_profile_image": false, "pinned_tweet_ids": [], "pinned_tweet_ids_str": [], "has_custom_timelines": true, "can_dm": null, "following": null, "follow_request_sent": null, "notifications": null, "muting": null, "blocking": null, "blocked_by": null, "want_retweets": null, "advertiser_account_type": "promotable_user", "advertiser_account_service_levels": ["analytics"], "profile_interstitial_type": "", "business_profile_state": "none", "translator_type": "none", "withheld_in_countries": [], "followed_by": null, "ext": {"highlightedLabel": {"r": {"ok": {}}, "ttl": -1}}, "require_some_consent": false}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:22.761945+02:00", "raw_value": {"id": 462886126, "id_str": "462886126", "name": "Ministerstwo Zdrowia", "screen_name": "MZ_GOV_PL", "location": "Polska", "description": "Oficjalny profil Ministerstwa Zdrowia", "url": "http://t.co/fYgPUTSfDq", "entities": {"url": {"urls": [{"url": "http://t.co/fYgPUTSfDq", "expanded_url": "http://www.mz.gov.pl", "display_url": "mz.gov.pl", "indices": [0, 22]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 439887, "fast_followers_count": 0, "normal_followers_count": 439887, "friends_count": 1175, "listed_count": 640, "created_at": "Fri Jan 13 13:40:29 +0000 2012", "favourites_count": 3153, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": true, "statuses_count": 14653, "media_count": 5389, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "ABB8C2", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme18/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme18/bg.gif", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1069885833656844290/Inl2pghx_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1069885833656844290/Inl2pghx_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/462886126/1632485104", "profile_image_extensions_alt_text": null, "profile_image_extensions_media_availability": null, "profile_image_extensions_media_color": {"palette": [{"rgb": {"red": 255, "green": 255, "blue": 255}, "percentage": 94.04}, {"rgb": {"red": 46, "green": 165, "blue": 215}, "percentage": 4.24}, {"rgb": {"red": 122, "green": 122, "blue": 122}, "percentage": 1.43}, {"rgb": {"red": 160, "green": 228, "blue": 241}, "percentage": 0.21}]}, "profile_image_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_banner_extensions_alt_text": null, "profile_banner_extensions_media_availability": null, "profile_banner_extensions_media_color": {"palette": [{"rgb": {"red": 127, "green": 140, "blue": 149}, "percentage": 31.49}, {"rgb": {"red": 229, "green": 231, "blue": 233}, "percentage": 29.16}, {"rgb": {"red": 30, "green": 48, "blue": 18}, "percentage": 8.9}, {"rgb": {"red": 115, "green": 122, "blue": 62}, "percentage": 5.29}, {"rgb": {"red": 72, "green": 29, "blue": 13}, "percentage": 4.2}]}, "profile_banner_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_link_color": "1B95E0", "profile_sidebar_border_color": "EEEEEE", "profile_sidebar_fill_color": "F6F6F6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": false, "default_profile_image": false, "pinned_tweet_ids": [1410483305686855680], "pinned_tweet_ids_str": ["1410483305686855680"], "has_custom_timelines": false, "can_dm": null, "following": null, "follow_request_sent": null, "notifications": null, "muting": null, "blocking": null, "blocked_by": null, "want_retweets": null, "advertiser_account_type": "promotable_user", "advertiser_account_service_levels": ["reseller", "analytics"], "profile_interstitial_type": "", "business_profile_state": "none", "translator_type": "none", "withheld_in_countries": [], "followed_by": null, "ext": {"highlightedLabel": {"r": {"ok": {}}, "ttl": -1}}, "require_some_consent": false}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:22.762065+02:00", "raw_value": {"id": 2555407237, "id_str": "2555407237", "name": "Andrzej Kubisiak", "screen_name": "KubisiakA", "location": "", "description": "Zast\u0119pca dyrektora w @PIE_NET_PL. Tu prywatnie i g\u0142\u00f3wnie o #rynekpracy #migracje #demografia #gospodarka. Czasem mnie ponosi i wtedy napisz\u0119 co\u015b o sporcie", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 1481, "fast_followers_count": 0, "normal_followers_count": 1481, "friends_count": 802, "listed_count": 10, "created_at": "Sun Jun 08 19:47:50 +0000 2014", "favourites_count": 13006, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 6415, "media_count": 767, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1309118014336499712/cDCaJDSh_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1309118014336499712/cDCaJDSh_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/2555407237/1606204298", "profile_image_extensions_alt_text": null, "profile_image_extensions_media_availability": null, "profile_image_extensions_media_color": {"palette": [{"rgb": {"red": 169, "green": 175, "blue": 188}, "percentage": 56.26}, {"rgb": {"red": 10, "green": 23, "blue": 63}, "percentage": 21.12}, {"rgb": {"red": 201, "green": 149, "blue": 116}, "percentage": 11.98}, {"rgb": {"red": 52, "green": 33, "blue": 19}, "percentage": 4.86}, {"rgb": {"red": 120, "green": 76, "blue": 50}, "percentage": 2.76}]}, "profile_image_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_banner_extensions_alt_text": null, "profile_banner_extensions_media_availability": null, "profile_banner_extensions_media_color": {"palette": [{"rgb": {"red": 1, "green": 174, "blue": 255}, "percentage": 75.6}, {"rgb": {"red": 231, "green": 245, "blue": 249}, "percentage": 15.5}, {"rgb": {"red": 2, "green": 63, "blue": 125}, "percentage": 6.05}, {"rgb": {"red": 104, "green": 203, "blue": 246}, "percentage": 1.6}, {"rgb": {"red": 251, "green": 251, "blue": 246}, "percentage": 0.85}]}, "profile_banner_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": true, "default_profile_image": false, "pinned_tweet_ids": [1421754601905209345], "pinned_tweet_ids_str": ["1421754601905209345"], "has_custom_timelines": true, "can_dm": null, "following": null, "follow_request_sent": null, "notifications": null, "muting": null, "blocking": null, "blocked_by": null, "want_retweets": null, "advertiser_account_type": "promotable_user", "advertiser_account_service_levels": ["analytics"], "profile_interstitial_type": "", "business_profile_state": "none", "translator_type": "none", "withheld_in_countries": [], "followed_by": null, "ext": {"highlightedLabel": {"r": {"ok": {}}, "ttl": -1}}, "require_some_consent": false}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:22.762175+02:00", "raw_value": {"id": 194399035, "id_str": "194399035", "name": "Rzeczpospolita", "screen_name": "rzeczpospolita", "location": "Polska", "description": "Rzeczpospolita to jeden z lider\u00f3w prasy codziennej w Polsce. Jest najcz\u0119\u015bciej cytowan\u0105 gazet\u0105 w kraju. Oto jedyny oficjalny profil Rz.", "url": "https://t.co/lg4AvBS252", "entities": {"url": {"urls": [{"url": "https://t.co/lg4AvBS252", "expanded_url": "http://www.rp.pl", "display_url": "rp.pl", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 232089, "fast_followers_count": 0, "normal_followers_count": 232089, "friends_count": 647, "listed_count": 980, "created_at": "Fri Sep 24 01:14:56 +0000 2010", "favourites_count": 1954, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": true, "statuses_count": 219787, "media_count": 38916, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "F7F7F7", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme7/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme7/bg.gif", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1410501087862341632/xn0fmSY9_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1410501087862341632/xn0fmSY9_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/194399035/1631616273", "profile_image_extensions_alt_text": null, "profile_image_extensions_media_availability": null, "profile_image_extensions_media_color": {"palette": [{"rgb": {"red": 206, "green": 206, "blue": 206}, "percentage": 93.55}, {"rgb": {"red": 82, "green": 82, "blue": 82}, "percentage": 3.54}]}, "profile_image_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_banner_extensions_alt_text": null, "profile_banner_extensions_media_availability": null, "profile_banner_extensions_media_color": {"palette": [{"rgb": {"red": 229, "green": 245, "blue": 219}, "percentage": 95.24}, {"rgb": {"red": 127, "green": 136, "blue": 122}, "percentage": 2.51}, {"rgb": {"red": 28, "green": 28, "blue": 28}, "percentage": 2.22}]}, "profile_banner_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_link_color": "CC0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "F3F3F3", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": false, "default_profile_image": false, "pinned_tweet_ids": [], "pinned_tweet_ids_str": [], "has_custom_timelines": true, "can_dm": null, "following": null, "follow_request_sent": null, "notifications": null, "muting": null, "blocking": null, "blocked_by": null, "want_retweets": null, "advertiser_account_type": "promotable_user", "advertiser_account_service_levels": ["smb"], "profile_interstitial_type": "", "business_profile_state": "none", "translator_type": "none", "withheld_in_countries": [], "followed_by": null, "ext": {"highlightedLabel": {"r": {"ok": {}}, "ttl": -1}}, "require_some_consent": false}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:22.762301+02:00", "raw_value": {"id": 134347213, "id_str": "134347213", "name": "Piotr Tarnowski", "screen_name": "PiotrekT", "location": "Skierniewice", "description": "Na TT g\u0142\u00f3wnie wizualizacje \ud83d\uddfa i analizy \ud83d\udcc8 zwi\u0105zane z #COVID19\n\n\ud83d\udd17 https://t.co/8vfx7JWiZK \n\n\ud83d\udce8  kontakt@tarnowski.info", "url": "https://t.co/T7BEHpl155", "entities": {"url": {"urls": [{"url": "https://t.co/T7BEHpl155", "expanded_url": "https://tarnowski.info", "display_url": "tarnowski.info", "indices": [0, 23]}]}, "description": {"urls": [{"url": "https://t.co/8vfx7JWiZK", "expanded_url": "http://tarnowski.info/covid", "display_url": "tarnowski.info/covid", "indices": [64, 87]}]}}, "protected": false, "followers_count": 4346, "fast_followers_count": 0, "normal_followers_count": 4346, "friends_count": 92, "listed_count": 32, "created_at": "Sun Apr 18 04:49:23 +0000 2010", "favourites_count": 1289, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 1862, "media_count": 1166, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1271435674730799111/EgDfTSDu_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1271435674730799111/EgDfTSDu_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/134347213/1607089812", "profile_image_extensions_media_color": {"palette": [{"rgb": {"red": 240, "green": 239, "blue": 239}, "percentage": 69.79}, {"rgb": {"red": 204, "green": 155, "blue": 128}, "percentage": 13.5}, {"rgb": {"red": 30, "green": 17, "blue": 18}, "percentage": 10.36}, {"rgb": {"red": 24, "green": 22, "blue": 36}, "percentage": 1.0}, {"rgb": {"red": 118, "green": 74, "blue": 54}, "percentage": 0.98}]}, "profile_image_extensions_alt_text": null, "profile_image_extensions_media_availability": null, "profile_image_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_banner_extensions_alt_text": null, "profile_banner_extensions_media_availability": null, "profile_banner_extensions_media_color": {"palette": [{"rgb": {"red": 8, "green": 14, "blue": 70}, "percentage": 81.07}, {"rgb": {"red": 74, "green": 47, "blue": 148}, "percentage": 8.03}, {"rgb": {"red": 48, "green": 106, "blue": 179}, "percentage": 7.69}, {"rgb": {"red": 132, "green": 65, "blue": 200}, "percentage": 0.96}, {"rgb": {"red": 43, "green": 133, "blue": 190}, "percentage": 0.94}]}, "profile_banner_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": true, "default_profile_image": false, "pinned_tweet_ids": [1336971245150154753], "pinned_tweet_ids_str": ["1336971245150154753"], "has_custom_timelines": true, "can_dm": null, "following": null, "follow_request_sent": null, "notifications": null, "muting": null, "blocking": null, "blocked_by": null, "want_retweets": null, "advertiser_account_type": "promotable_user", "advertiser_account_service_levels": ["analytics"], "profile_interstitial_type": "", "business_profile_state": "none", "translator_type": "none", "withheld_in_countries": [], "followed_by": null, "ext": {"highlightedLabel": {"r": {"ok": {}}, "ttl": -1}}, "require_some_consent": false}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:22.762424+02:00", "raw_value": {"id": 399667344, "id_str": "399667344", "name": "\u0141ukasz Kijek", "screen_name": "LUKASZKIJEK", "location": "WARSAW", "description": "Redaktor naczelny serwis\u00f3w informacyjnych https://t.co/iVKU3m2Jfi (Wiadomo\u015bci, Next, Kultura, Metro Warszawa). Wcze\u015bniej @TVN24BIS, @TVN24, TVN CNBC.", "url": "https://t.co/KyrdX2dbIK", "entities": {"url": {"urls": [{"url": "https://t.co/KyrdX2dbIK", "expanded_url": "http://gazeta.pl", "display_url": "gazeta.pl", "indices": [0, 23]}]}, "description": {"urls": [{"url": "https://t.co/iVKU3m2Jfi", "expanded_url": "http://Gazeta.pl", "display_url": "Gazeta.pl", "indices": [42, 65]}]}}, "protected": false, "followers_count": 5956, "fast_followers_count": 0, "normal_followers_count": 5956, "friends_count": 3455, "listed_count": 104, "created_at": "Thu Oct 27 21:11:30 +0000 2011", "favourites_count": 3522, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 10325, "media_count": 1502, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/673929184062939136/8GI0N8Bc_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/673929184062939136/8GI0N8Bc_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/399667344/1615057292", "profile_image_extensions_media_color": {"palette": [{"rgb": {"red": 193, "green": 187, "blue": 225}, "percentage": 40.48}, {"rgb": {"red": 21, "green": 36, "blue": 55}, "percentage": 38.81}, {"rgb": {"red": 214, "green": 148, "blue": 114}, "percentage": 5.18}, {"rgb": {"red": 220, "green": 210, "blue": 208}, "percentage": 4.24}, {"rgb": {"red": 70, "green": 52, "blue": 38}, "percentage": 2.87}]}, "profile_image_extensions_alt_text": null, "profile_image_extensions_media_availability": null, "profile_image_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_banner_extensions_alt_text": null, "profile_banner_extensions_media_availability": null, "profile_banner_extensions_media_color": {"palette": [{"rgb": {"red": 228, "green": 228, "blue": 230}, "percentage": 46.37}, {"rgb": {"red": 28, "green": 28, "blue": 34}, "percentage": 34.25}, {"rgb": {"red": 74, "green": 60, "blue": 48}, "percentage": 2.73}, {"rgb": {"red": 10, "green": 184, "blue": 226}, "percentage": 1.47}, {"rgb": {"red": 61, "green": 64, "blue": 101}, "percentage": 1.31}]}, "profile_banner_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": true, "default_profile_image": false, "pinned_tweet_ids": [1447676136373243909], "pinned_tweet_ids_str": ["1447676136373243909"], "has_custom_timelines": true, "can_dm": null, "following": null, "follow_request_sent": null, "notifications": null, "muting": null, "blocking": null, "blocked_by": null, "want_retweets": null, "advertiser_account_type": "promotable_user", "advertiser_account_service_levels": ["analytics"], "profile_interstitial_type": "", "business_profile_state": "none", "translator_type": "none", "withheld_in_countries": [], "followed_by": null, "ext": {"highlightedLabel": {"r": {"ok": {}}, "ttl": -1}}, "require_some_consent": false}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:22.762527+02:00", "raw_value": {"id": 2780457368, "id_str": "2780457368", "name": "Analizy danych \ud83c\uddf5\ud83c\uddf1", "screen_name": "mariog5tw", "location": "Polska", "description": "Autor modeli AKP i KOR. Analizy danych #DataScience | klimat  #ModelAKP | pandemia Covid-19  #ModelKOR | energetyka gospodarka #ModelENG.\nNiezale\u017cny badacz.", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 1406, "fast_followers_count": 0, "normal_followers_count": 1406, "friends_count": 1382, "listed_count": 71, "created_at": "Sat Aug 30 11:55:39 +0000 2014", "favourites_count": 3094, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 5444, "media_count": 3196, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1329044028382441473/EScPD7FK_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1329044028382441473/EScPD7FK_normal.jpg", "profile_image_extensions_alt_text": null, "profile_image_extensions_media_availability": null, "profile_image_extensions_media_color": {"palette": [{"rgb": {"red": 0, "green": 0, "blue": 204}, "percentage": 84.28}, {"rgb": {"red": 248, "green": 247, "blue": 248}, "percentage": 5.68}, {"rgb": {"red": 250, "green": 2, "blue": 4}, "percentage": 3.61}, {"rgb": {"red": 65, "green": 68, "blue": 198}, "percentage": 2.05}, {"rgb": {"red": 185, "green": 189, "blue": 234}, "percentage": 1.68}]}, "profile_image_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": true, "default_profile_image": false, "pinned_tweet_ids": [], "pinned_tweet_ids_str": [], "has_custom_timelines": true, "can_dm": null, "following": null, "follow_request_sent": null, "notifications": null, "muting": null, "blocking": null, "blocked_by": null, "want_retweets": null, "advertiser_account_type": "promotable_user", "advertiser_account_service_levels": [], "profile_interstitial_type": "", "business_profile_state": "none", "translator_type": "regular", "withheld_in_countries": [], "followed_by": null, "ext": {"highlightedLabel": {"r": {"ok": {}}, "ttl": -1}}, "require_some_consent": false}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:22.762640+02:00", "raw_value": {"id": 361366954, "id_str": "361366954", "name": "Tomasz \u0141aszcz", "screen_name": "TomaszLaszcz", "location": "Gdansk", "description": "M\u0105\u017c i ojciec. \nProgramista. \nKatolik,\nna Twitterze g\u0142\u00f3wnie analiza danych pandemii.", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 421, "fast_followers_count": 0, "normal_followers_count": 421, "friends_count": 454, "listed_count": 4, "created_at": "Wed Aug 24 17:41:27 +0000 2011", "favourites_count": 18928, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 10770, "media_count": 445, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1353997324805169152/mrcoz4wz_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1353997324805169152/mrcoz4wz_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/361366954/1625466189", "profile_image_extensions_alt_text": null, "profile_image_extensions_media_availability": null, "profile_image_extensions_media_color": {"palette": [{"rgb": {"red": 89, "green": 51, "blue": 50}, "percentage": 39.51}, {"rgb": {"red": 192, "green": 205, "blue": 226}, "percentage": 38.09}, {"rgb": {"red": 30, "green": 28, "blue": 37}, "percentage": 8.04}, {"rgb": {"red": 186, "green": 158, "blue": 153}, "percentage": 2.08}, {"rgb": {"red": 105, "green": 42, "blue": 37}, "percentage": 1.23}]}, "profile_image_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_banner_extensions_alt_text": null, "profile_banner_extensions_media_availability": null, "profile_banner_extensions_media_color": {"palette": [{"rgb": {"red": 38, "green": 38, "blue": 38}, "percentage": 52.09}, {"rgb": {"red": 250, "green": 128, "blue": 34}, "percentage": 19.13}, {"rgb": {"red": 249, "green": 79, "blue": 32}, "percentage": 13.05}, {"rgb": {"red": 251, "green": 167, "blue": 36}, "percentage": 9.34}, {"rgb": {"red": 248, "green": 209, "blue": 41}, "percentage": 2.09}]}, "profile_banner_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": true, "default_profile_image": false, "pinned_tweet_ids": [], "pinned_tweet_ids_str": [], "has_custom_timelines": false, "can_dm": null, "following": null, "follow_request_sent": null, "notifications": null, "muting": null, "blocking": null, "blocked_by": null, "want_retweets": null, "advertiser_account_type": "none", "advertiser_account_service_levels": [], "profile_interstitial_type": "", "business_profile_state": "none", "translator_type": "regular", "withheld_in_countries": [], "followed_by": null, "ext": {"highlightedLabel": {"r": {"ok": {}}, "ttl": -1}}, "require_some_consent": false}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:22.762758+02:00", "raw_value": {"id": 90516952, "id_str": "90516952", "name": "Mario Rebel #SilniRazem", "screen_name": "MarioRebeliant", "location": "Poland", "description": "Freedom fighter. Private opinions only.\nMy motto - The Only Easy Day Was Yesterday \u2708\ud83c\uddf5\ud83c\uddf1\nNr antyrepresyjny: 722 196 139\nAborcja bez granic: +48 22 29 22 597", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 9124, "fast_followers_count": 0, "normal_followers_count": 9124, "friends_count": 10037, "listed_count": 150, "created_at": "Mon Nov 16 23:52:57 +0000 2009", "favourites_count": 439601, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 332719, "media_count": 2607, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1241808060244471815/QXHCPJJy_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1241808060244471815/QXHCPJJy_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/90516952/1626716347", "profile_image_extensions_alt_text": null, "profile_image_extensions_media_availability": null, "profile_image_extensions_media_color": {"palette": [{"rgb": {"red": 148, "green": 140, "blue": 138}, "percentage": 48.3}, {"rgb": {"red": 26, "green": 29, "blue": 40}, "percentage": 36.9}, {"rgb": {"red": 104, "green": 122, "blue": 174}, "percentage": 5.26}, {"rgb": {"red": 134, "green": 94, "blue": 97}, "percentage": 4.25}, {"rgb": {"red": 47, "green": 59, "blue": 88}, "percentage": 2.18}]}, "profile_image_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_banner_extensions_alt_text": null, "profile_banner_extensions_media_availability": null, "profile_banner_extensions_media_color": {"palette": [{"rgb": {"red": 216, "green": 235, "blue": 248}, "percentage": 69.06}, {"rgb": {"red": 49, "green": 129, "blue": 192}, "percentage": 15.32}, {"rgb": {"red": 198, "green": 188, "blue": 146}, "percentage": 6.07}, {"rgb": {"red": 173, "green": 29, "blue": 76}, "percentage": 1.85}, {"rgb": {"red": 6, "green": 83, "blue": 161}, "percentage": 1.54}]}, "profile_banner_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_link_color": "1B95E0", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "has_extended_profile": false, "default_profile": false, "default_profile_image": false, "pinned_tweet_ids": [991295389008650241], "pinned_tweet_ids_str": ["991295389008650241"], "has_custom_timelines": true, "can_dm": null, "following": null, "follow_request_sent": null, "notifications": null, "muting": null, "blocking": null, "blocked_by": null, "want_retweets": null, "advertiser_account_type": "promotable_user", "advertiser_account_service_levels": [], "profile_interstitial_type": "", "business_profile_state": "none", "translator_type": "none", "withheld_in_countries": [], "followed_by": null, "ext": {"highlightedLabel": {"r": {"ok": {}}, "ttl": -1}}, "require_some_consent": false}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:22.762871+02:00", "raw_value": {"id": 385837087, "id_str": "385837087", "name": "Ponti vel aval4nche", "screen_name": "aval4nche", "location": "Adriatyk, ocean gor\u0105cy", "description": "Z\u0142ap garstk\u0119 z\u0142o\u015bci i \u015bmiechu\nZ\u0142ap garstk\u0119 b\u00f3lu i strach\nTak to ja", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 436, "fast_followers_count": 0, "normal_followers_count": 436, "friends_count": 322, "listed_count": 20, "created_at": "Thu Oct 06 06:47:49 +0000 2011", "favourites_count": 57318, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 71513, "media_count": 5423, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1310306558631346177/AofRstyD_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1310306558631346177/AofRstyD_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/385837087/1612369709", "profile_image_extensions_alt_text": null, "profile_image_extensions_media_availability": null, "profile_image_extensions_media_color": {"palette": [{"rgb": {"red": 0, "green": 0, "blue": 0}, "percentage": 84.39}, {"rgb": {"red": 197, "green": 197, "blue": 197}, "percentage": 11.29}, {"rgb": {"red": 102, "green": 101, "blue": 96}, "percentage": 0.12}]}, "profile_image_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_banner_extensions_alt_text": null, "profile_banner_extensions_media_availability": null, "profile_banner_extensions_media_color": {"palette": [{"rgb": {"red": 128, "green": 68, "blue": 52}, "percentage": 53.38}, {"rgb": {"red": 218, "green": 154, "blue": 127}, "percentage": 22.47}, {"rgb": {"red": 169, "green": 127, "blue": 130}, "percentage": 17.28}, {"rgb": {"red": 105, "green": 54, "blue": 57}, "percentage": 1.91}, {"rgb": {"red": 177, "green": 86, "blue": 56}, "percentage": 1.89}]}, "profile_banner_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_link_color": "0084B4", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": false, "default_profile_image": false, "pinned_tweet_ids": [], "pinned_tweet_ids_str": [], "has_custom_timelines": true, "can_dm": null, "following": null, "follow_request_sent": null, "notifications": null, "muting": null, "blocking": null, "blocked_by": null, "want_retweets": null, "advertiser_account_type": "promotable_user", "advertiser_account_service_levels": [], "profile_interstitial_type": "", "business_profile_state": "none", "translator_type": "regular", "withheld_in_countries": [], "followed_by": null, "ext": {"highlightedLabel": {"r": {"ok": {}}, "ttl": -1}}, "require_some_consent": false}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:22.762998+02:00", "raw_value": {"id": 705694814612938752, "id_str": "705694814612938752", "name": "NCDC", "screen_name": "NCDCgov", "location": "Abuja, Nigeria", "description": "The official Twitter account of the Nigeria Centre for Disease Control (NCDC) || Social Media Policy: https://t.co/atAH0s6OEF || https://t.co/rW5RtQvANI", "url": "https://t.co/oMo7WnWdyM", "entities": {"url": {"urls": [{"url": "https://t.co/oMo7WnWdyM", "expanded_url": "http://www.ncdc.gov.ng", "display_url": "ncdc.gov.ng", "indices": [0, 23]}]}, "description": {"urls": [{"url": "https://t.co/atAH0s6OEF", "expanded_url": "http://ncdc.gov.ng/terms", "display_url": "ncdc.gov.ng/terms", "indices": [102, 125]}, {"url": "https://t.co/rW5RtQvANI", "expanded_url": "http://covid19blog.ncdc.gov.ng", "display_url": "covid19blog.ncdc.gov.ng", "indices": [129, 152]}]}}, "protected": false, "followers_count": 1185335, "fast_followers_count": 0, "normal_followers_count": 1185335, "friends_count": 382, "listed_count": 0, "created_at": "Fri Mar 04 10:02:09 +0000 2016", "favourites_count": 3159, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": true, "statuses_count": 13404, "media_count": 9647, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1314866929035862016/rO0-caQf_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1314866929035862016/rO0-caQf_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/705694814612938752/1622639296", "profile_image_extensions_alt_text": null, "profile_image_extensions_media_color": {"palette": [{"rgb": {"red": 255, "green": 255, "blue": 255}, "percentage": 85.01}, {"rgb": {"red": 34, "green": 137, "blue": 233}, "percentage": 5.54}, {"rgb": {"red": 130, "green": 192, "blue": 237}, "percentage": 4.42}, {"rgb": {"red": 43, "green": 142, "blue": 95}, "percentage": 3.01}, {"rgb": {"red": 5, "green": 131, "blue": 250}, "percentage": 0.61}]}, "profile_image_extensions_media_availability": null, "profile_image_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_banner_extensions_alt_text": null, "profile_banner_extensions_media_availability": null, "profile_banner_extensions_media_color": {"palette": [{"rgb": {"red": 255, "green": 255, "blue": 255}, "percentage": 88.75}, {"rgb": {"red": 72, "green": 163, "blue": 117}, "percentage": 2.56}, {"rgb": {"red": 255, "green": 200, "blue": 45}, "percentage": 2.09}, {"rgb": {"red": 241, "green": 208, "blue": 210}, "percentage": 1.78}, {"rgb": {"red": 254, "green": 235, "blue": 178}, "percentage": 1.58}]}, "profile_banner_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_link_color": "008443", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "has_extended_profile": false, "default_profile": false, "default_profile_image": false, "pinned_tweet_ids": [1370436999925104643], "pinned_tweet_ids_str": ["1370436999925104643"], "has_custom_timelines": false, "can_dm": null, "following": null, "follow_request_sent": null, "notifications": null, "muting": null, "blocking": null, "blocked_by": null, "want_retweets": null, "advertiser_account_type": "promotable_user", "advertiser_account_service_levels": ["smb"], "profile_interstitial_type": "", "business_profile_state": "none", "translator_type": "none", "withheld_in_countries": [], "followed_by": null, "ext": {"highlightedLabel": {"r": {"ok": {}}, "ttl": -1}}, "require_some_consent": false}}
last_scrap_zero False is_cursor True
need_guest_token True
run request RequestDetails(http_method=<HttpMethod.GET: 1>, url='https://twitter.com/i/api/2/search/adaptive.json', headers={'Authorization': 'Bearer AAAAAAAAAAAAAAAAAAAAANRILgAAAAAAnNwIzUejRCOuH5E6I8xnZz4puTs%3D1Zv7ttfk8LF81IUq16cHjhLTvJu4FA33AGWWjCpTnA', 'x-guest-token': '1448607857604272138'}, params={'include_profile_interstitial_type': '1', 'include_blocking': '1', 'include_blocked_by': '1', 'include_followed_by': '1', 'include_want_retweets': '1', 'include_mute_edge': '1', 'include_can_dm': '1', 'include_can_media_tag': '1', 'skip_status': '1', 'cards_platform': 'Web-12', 'include_cards': '1', 'include_ext_alt_text': 'true', 'include_quote_count': 'true', 'include_reply_count': '1', 'tweet_mode': 'extended', 'include_entities': 'true', 'include_user_entities': 'true', 'include_ext_media_color': 'true', 'include_ext_media_availability': 'true', 'send_error_codes': 'true', 'simple_quoted_tweet': 'true', 'q': '#covid19', 'count': 20, 'query_source': 'typed_query', 'pc': '1', 'spelling_corrections': '1', 'ext': 'mediaStats,highlightedLabel,voiceInfo', 'cursor': 'scroll:thGAVUV0VFVBYBFoCg6p3-1qCaKBIYtAESY8LrAAAB9D-AYk3S8an8AAAAFBQZ7HlEVhADFBpcndSWYAUUGnoHiRcgABQaeVrFlkAFFBpewwHWQAQUGlm_55cQCBQab_D1F6AHFBpUT-8XIAMUGlAnfxcgARQaXotEVkABFBpj0jjWUAMUGlMQK5egARQaMCQe16AFFBnrZa1X0AAUGkRcidYQAhQaciIVVmAFFBm9IOZWUAUUGmjmcRfQARQaaAeY1mACFBpkExxXIAJhFciFehWAiXoYBlRPUElDUzUoFQAVAAA='}, timeout=20)
200
{"object_type": "TweetRaw", "download_datetime": "2021-10-14T13:13:23.911607+02:00", "raw_value": {"created_at": "Wed Oct 13 17:35:53 +0000 2021", "id": 1448341734807654401, "id_str": "1448341734807654401", "full_text": "A big mix and match vaccine report in 458 participants with Pfizer, Moderna, J&amp;J, then getting another vaccine 12 weeks later: markedly increased neutralizing antibody response by mixing (up to 76-fold) w/ these 9 combinations (Figure)\nhttps://t.co/WAnVeZ4HEr (not Delta strain) https://t.co/7v85jT41Sk", "truncated": false, "display_text_range": [0, 282], "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/WAnVeZ4HEr", "expanded_url": "https://www.medrxiv.org/content/10.1101/2021.10.10.21264827v1", "display_url": "medrxiv.org/content/10.110\u2026", "indices": [240, 263]}], "media": [{"id": 1448340983104479233, "id_str": "1448340983104479233", "indices": [283, 306], "media_url": "http://pbs.twimg.com/media/FBmKc1OVIAEPu8R.jpg", "media_url_https": "https://pbs.twimg.com/media/FBmKc1OVIAEPu8R.jpg", "url": "https://t.co/7v85jT41Sk", "display_url": "pic.twitter.com/7v85jT41Sk", "expanded_url": "https://twitter.com/EricTopol/status/1448341734807654401/photo/1", "type": "photo", "original_info": {"width": 3476, "height": 2506, "focus_rects": [{"x": 0, "y": 0, "h": 1947, "w": 3476}, {"x": 0, "y": 0, "h": 2506, "w": 2506}, {"x": 0, "y": 0, "h": 2506, "w": 2198}, {"x": 0, "y": 0, "h": 2506, "w": 1253}, {"x": 0, "y": 0, "h": 2506, "w": 3476}]}, "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 2048, "h": 1476, "resize": "fit"}, "medium": {"w": 1200, "h": 865, "resize": "fit"}, "small": {"w": 680, "h": 490, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 1448340983104479233, "id_str": "1448340983104479233", "indices": [283, 306], "media_url": "http://pbs.twimg.com/media/FBmKc1OVIAEPu8R.jpg", "media_url_https": "https://pbs.twimg.com/media/FBmKc1OVIAEPu8R.jpg", "url": "https://t.co/7v85jT41Sk", "display_url": "pic.twitter.com/7v85jT41Sk", "expanded_url": "https://twitter.com/EricTopol/status/1448341734807654401/photo/1", "type": "photo", "original_info": {"width": 3476, "height": 2506, "focus_rects": [{"x": 0, "y": 0, "h": 1947, "w": 3476}, {"x": 0, "y": 0, "h": 2506, "w": 2506}, {"x": 0, "y": 0, "h": 2506, "w": 2198}, {"x": 0, "y": 0, "h": 2506, "w": 1253}, {"x": 0, "y": 0, "h": 2506, "w": 3476}]}, "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 2048, "h": 1476, "resize": "fit"}, "medium": {"w": 1200, "h": 865, "resize": "fit"}, "small": {"w": 680, "h": 490, "resize": "fit"}}, "media_key": "3_1448340983104479233", "ext_alt_text": null, "ext_media_availability": {"status": "available"}, "ext_media_color": {"palette": [{"rgb": {"red": 250, "green": 250, "blue": 250}, "percentage": 96.93}, {"rgb": {"red": 112, "green": 125, "blue": 132}, "percentage": 1.38}, {"rgb": {"red": 172, "green": 149, "blue": 97}, "percentage": 0.87}, {"rgb": {"red": 134, "green": 166, "blue": 185}, "percentage": 0.39}, {"rgb": {"red": 99, "green": 85, "blue": 55}, "percentage": 0.1}]}, "ext": {"mediaStats": {"r": "Missing", "ttl": -1}}}]}, "source": "<a href=\"https://mobile.twitter.com\" rel=\"nofollow\">Twitter Web App</a>", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user_id": 86626845, "user_id_str": "86626845", "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 430, "favorite_count": 1279, "reply_count": 74, "quote_count": 67, "conversation_id": 1448341734807654401, "conversation_id_str": "1448341734807654401", "favorited": false, "retweeted": false, "possibly_sensitive": false, "possibly_sensitive_editable": true, "lang": "en", "supplemental_language": null, "self_thread": {"id": 1448341734807654401, "id_str": "1448341734807654401"}}}
{"object_type": "TweetRaw", "download_datetime": "2021-10-14T13:13:23.911775+02:00", "raw_value": {"created_at": "Thu Oct 14 00:42:21 +0000 2021", "id": 1448449061909041154, "id_str": "1448449061909041154", "full_text": "LOL! Pami\u0119tajcie dzieciaczki, #covid19 rozprzestrzenia si\u0119 tylko na prawackich marszach. Lewackie marsze maj\u0105 specjaln\u0105 ochron\u0119 antywirusowych midiflorian\u00f3w. Jestem biologiem, to moja profesjonalna opinia. Clown face", "truncated": false, "display_text_range": [0, 216], "entities": {"hashtags": [{"text": "covid19", "indices": [30, 38]}], "symbols": [], "user_mentions": [], "urls": []}, "source": "<a href=\"https://mobile.twitter.com\" rel=\"nofollow\">Twitter Web App</a>", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user_id": 1378376877413437440, "user_id_str": "1378376877413437440", "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1448272522416435201, "quoted_status_id_str": "1448272522416435201", "quoted_status_permalink": {"url": "https://t.co/xOZGmaRFTV", "expanded": "https://twitter.com/rzeczpospolita/status/1448272522416435201", "display": "twitter.com/rzeczpospolita\u2026"}, "retweet_count": 0, "favorite_count": 1, "reply_count": 0, "quote_count": 0, "conversation_id": 1448449061909041154, "conversation_id_str": "1448449061909041154", "favorited": false, "retweeted": false, "lang": "pl", "supplemental_language": null}}
{"object_type": "TweetRaw", "download_datetime": "2021-10-14T13:13:23.912036+02:00", "raw_value": {"created_at": "Thu Oct 14 10:28:30 +0000 2021", "id": 1448596571801759744, "id_str": "1448596571801759744", "full_text": "Polscy naukowcy o lekach na #COVID19. Bardzo ciekawe, warto, teraz na \u017cywo lub p\u00f3\u017aniej  https://t.co/5EyEQ0R9J7", "truncated": false, "display_text_range": [0, 111], "entities": {"hashtags": [{"text": "COVID19", "indices": [28, 36]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/5EyEQ0R9J7", "expanded_url": "https://youtu.be/9CR4o6gZidI", "display_url": "youtu.be/9CR4o6gZidI", "indices": [88, 111]}]}, "source": "<a href=\"https://mobile.twitter.com\" rel=\"nofollow\">Twitter Web App</a>", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user_id": 11640112, "user_id_str": "11640112", "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 2, "reply_count": 1, "quote_count": 0, "conversation_id": 1448596571801759744, "conversation_id_str": "1448596571801759744", "favorited": false, "retweeted": false, "possibly_sensitive": false, "possibly_sensitive_editable": true, "card": {"name": "player", "url": "https://t.co/5EyEQ0R9J7", "card_type_url": "http://card-type-url-is-deprecated.invalid", "binding_values": {"vanity_url": {"type": "STRING", "string_value": "youtube.com", "scribe_key": "vanity_url"}, "player_url": {"type": "STRING", "string_value": "https://www.youtube.com/embed/9CR4o6gZidI"}, "app_is_free": {"type": "STRING", "string_value": "true"}, "app_price_currency": {"type": "STRING", "string_value": "USD"}, "app_price_amount": {"type": "STRING", "string_value": "0.0"}, "domain": {"type": "STRING", "string_value": "www.youtube.com"}, "app_num_ratings": {"type": "STRING", "string_value": "22,687,489"}, "app_star_rating": {"type": "STRING", "string_value": "4.68756"}, "app_name": {"type": "STRING", "string_value": "YouTube: Watch, Listen, Stream"}, "player_width": {"type": "STRING", "string_value": "640"}, "player_height": {"type": "STRING", "string_value": "360"}, "site": {"type": "USER", "user_value": {"id_str": "10228272", "path": []}, "scribe_key": "publisher_id"}, "title": {"type": "STRING", "string_value": "Debata ekspercka: Poszukiwanie skutecznego leku na COVID-19"}, "description": {"type": "STRING", "string_value": "Serdecznie zapraszamy na trzeci\u0105 debat\u0119 ekspert\u00f3w z cyklu \u201eUfajmy nauce\u201d, kt\u00f3ry realizujemy z okazji jubileuszu trzydziestolecia Fundacji na rzecz Nauki Pols..."}, "player_image_small": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448558408676823040/atGgqBt4?format=jpg&name=144x144", "width": 144, "height": 81, "alt": null}}, "player_image": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448558408676823040/atGgqBt4?format=jpg&name=280x280", "width": 280, "height": 158, "alt": null}}, "player_image_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448558408676823040/atGgqBt4?format=jpg&name=800x320_1", "width": 569, "height": 320, "alt": null}}, "player_image_x_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448558408676823040/atGgqBt4?format=png&name=2048x2048_2_exp", "width": 1280, "height": 720, "alt": null}}, "player_image_original": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448558408676823040/atGgqBt4?format=jpg&name=orig", "width": 1280, "height": 720, "alt": null}}, "card_url": {"type": "STRING", "string_value": "https://t.co/5EyEQ0R9J7", "scribe_key": "card_url"}}, "users": {"10228272": {"id": 10228272, "id_str": "10228272", "name": "YouTube", "screen_name": "YouTube", "location": "San Bruno, CA", "description": "#YouTubeShorts \u2014 Introducing the shorter side of YouTube", "url": "https://t.co/kjUK7E8YAQ", "entities": {"url": {"urls": [{"url": "https://t.co/kjUK7E8YAQ", "expanded_url": "https://www.youtube.com/shorts/H12SwqwR2NE", "display_url": "youtube.com/shorts/H12Swqw\u2026", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 73507207, "fast_followers_count": 0, "normal_followers_count": 73507207, "friends_count": 1202, "listed_count": 79530, "created_at": "Tue Nov 13 21:43:46 +0000 2007", "favourites_count": 5742, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": true, "statuses_count": 37541, "media_count": 13146, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": true, "profile_background_color": "AF0000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1427292844612595720/RC1YSvuT_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1427292844612595720/RC1YSvuT_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/10228272/1631634387", "profile_image_extensions_alt_text": null, "profile_image_extensions_media_availability": null, "profile_image_extensions_media_color": {"palette": [{"rgb": {"red": 255, "green": 255, "blue": 255}, "percentage": 70.88}, {"rgb": {"red": 254, "green": 0, "blue": 0}, "percentage": 27.69}, {"rgb": {"red": 252, "green": 180, "blue": 178}, "percentage": 0.86}, {"rgb": {"red": 254, "green": 87, "blue": 90}, "percentage": 0.37}, {"rgb": {"red": 250, "green": 132, "blue": 130}, "percentage": 0.15}]}, "profile_image_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_banner_extensions_alt_text": null, "profile_banner_extensions_media_availability": null, "profile_banner_extensions_media_color": {"palette": [{"rgb": {"red": 62, "green": 11, "blue": 140}, "percentage": 43.31}, {"rgb": {"red": 1, "green": 161, "blue": 75}, "percentage": 23.58}, {"rgb": {"red": 25, "green": 108, "blue": 87}, "percentage": 4.41}, {"rgb": {"red": 141, "green": 106, "blue": 31}, "percentage": 2.93}, {"rgb": {"red": 38, "green": 46, "blue": 118}, "percentage": 2.33}]}, "profile_banner_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_link_color": "C9191D", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "EFEFEF", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": false, "default_profile_image": false, "pinned_tweet_ids": [], "pinned_tweet_ids_str": [], "has_custom_timelines": true, "can_dm": null, "following": null, "follow_request_sent": null, "notifications": null, "muting": null, "blocking": null, "blocked_by": null, "want_retweets": null, "advertiser_account_type": "promotable_user", "advertiser_account_service_levels": ["dso", "dso", "dso", "dso", "dso", "dso", "dso", "dso", "dso"], "profile_interstitial_type": "", "business_profile_state": "none", "translator_type": "regular", "withheld_in_countries": [], "followed_by": null, "ext": {"highlightedLabel": {"r": {"ok": {}}, "ttl": -1}}, "require_some_consent": false}}, "card_platform": {"platform": {"device": {"name": "Swift", "version": "12"}, "audience": {"name": "production", "bucket": null}}}}, "lang": "pl", "supplemental_language": null, "self_thread": {"id": 1448596571801759744, "id_str": "1448596571801759744"}}}
{"object_type": "TweetRaw", "download_datetime": "2021-10-14T13:13:23.912141+02:00", "raw_value": {"created_at": "Thu Oct 14 08:31:12 +0000 2021", "id": 1448567048842383361, "id_str": "1448567048842383361", "full_text": "Mamy 3000 nowych i potwierdzonych przypadk\u00f3w zaka\u017cenia #koronawirus z wojew\u00f3dztw: lubelskiego (671), mazowieckiego (539), podlaskiego (313), \u0142\u00f3dzkiego (167), pomorskiego (161), zachodniopomorskiego (155), podkarpackiego (154), \u015bl\u0105skiego (143), wielkopolskiego (140),", "truncated": false, "display_text_range": [0, 266], "entities": {"hashtags": [{"text": "koronawirus", "indices": [55, 67]}], "symbols": [], "user_mentions": [], "urls": []}, "source": "<a href=\"https://mobile.twitter.com\" rel=\"nofollow\">Twitter Web App</a>", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user_id": 462886126, "user_id_str": "462886126", "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 111, "favorite_count": 838, "reply_count": 219, "quote_count": 134, "conversation_id": 1448567048842383361, "conversation_id_str": "1448567048842383361", "favorited": false, "retweeted": false, "lang": "pl", "supplemental_language": null, "self_thread": {"id": 1448567048842383361, "id_str": "1448567048842383361"}}}
{"object_type": "TweetRaw", "download_datetime": "2021-10-14T13:13:23.912233+02:00", "raw_value": {"created_at": "Thu Oct 14 10:59:14 +0000 2021", "id": 1448604305481773057, "id_str": "1448604305481773057", "full_text": "Litwa 27. krajem z ponad dwoma promilami ofiar #covid19 w ludno\u015bci.", "truncated": false, "display_text_range": [0, 67], "entities": {"hashtags": [{"text": "covid19", "indices": [47, 55]}], "symbols": [], "user_mentions": [], "urls": []}, "source": "<a href=\"https://mobile.twitter.com\" rel=\"nofollow\">Twitter Web App</a>", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user_id": 746711713916006400, "user_id_str": "746711713916006400", "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "reply_count": 0, "quote_count": 0, "conversation_id": 1448604305481773057, "conversation_id_str": "1448604305481773057", "favorited": false, "retweeted": false, "lang": "pl", "supplemental_language": null}}
{"object_type": "TweetRaw", "download_datetime": "2021-10-14T13:13:23.912416+02:00", "raw_value": {"created_at": "Thu Oct 14 08:39:39 +0000 2021", "id": 1448569177426604036, "id_str": "1448569177426604036", "full_text": "Raport Ministerstwa Zdrowia: 3000 nowych zaka\u017ce\u0144 #koronawirus (najwi\u0119cej - 670 - na Lubelszczy\u017anie), zmar\u0142o 60 chorych z #COVID19.\n\nhttps://t.co/xDzPPjtE31 https://t.co/ABq7tMCYJ8", "truncated": false, "display_text_range": [0, 155], "entities": {"hashtags": [{"text": "koronawirus", "indices": [49, 61]}, {"text": "COVID19", "indices": [121, 129]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/xDzPPjtE31", "expanded_url": "https://www.rp.pl/ochrona-zdrowia/art19013891-kolejna-granica-przekroczona-3-tysiace-zakazen-w-ciagu-doby-wiele-zgonow", "display_url": "rp.pl/ochrona-zdrowi\u2026", "indices": [132, 155]}], "media": [{"id": 1448569169390280704, "id_str": "1448569169390280704", "indices": [156, 179], "media_url": "http://pbs.twimg.com/media/FBpZ_BYXIAAORt0.jpg", "media_url_https": "https://pbs.twimg.com/media/FBpZ_BYXIAAORt0.jpg", "url": "https://t.co/ABq7tMCYJ8", "display_url": "pic.twitter.com/ABq7tMCYJ8", "expanded_url": "https://twitter.com/rzeczpospolita/status/1448569177426604036/photo/1", "type": "photo", "original_info": {"width": 1920, "height": 1080, "focus_rects": [{"x": 0, "y": 5, "h": 1075, "w": 1920}, {"x": 468, "y": 0, "h": 1080, "w": 1080}, {"x": 535, "y": 0, "h": 1080, "w": 947}, {"x": 738, "y": 0, "h": 1080, "w": 540}, {"x": 0, "y": 0, "h": 1080, "w": 1920}]}, "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 1920, "h": 1080, "resize": "fit"}, "small": {"w": 680, "h": 383, "resize": "fit"}, "medium": {"w": 1200, "h": 675, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 1448569169390280704, "id_str": "1448569169390280704", "indices": [156, 179], "media_url": "http://pbs.twimg.com/media/FBpZ_BYXIAAORt0.jpg", "media_url_https": "https://pbs.twimg.com/media/FBpZ_BYXIAAORt0.jpg", "url": "https://t.co/ABq7tMCYJ8", "display_url": "pic.twitter.com/ABq7tMCYJ8", "expanded_url": "https://twitter.com/rzeczpospolita/status/1448569177426604036/photo/1", "type": "photo", "original_info": {"width": 1920, "height": 1080, "focus_rects": [{"x": 0, "y": 5, "h": 1075, "w": 1920}, {"x": 468, "y": 0, "h": 1080, "w": 1080}, {"x": 535, "y": 0, "h": 1080, "w": 947}, {"x": 738, "y": 0, "h": 1080, "w": 540}, {"x": 0, "y": 0, "h": 1080, "w": 1920}]}, "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 1920, "h": 1080, "resize": "fit"}, "small": {"w": 680, "h": 383, "resize": "fit"}, "medium": {"w": 1200, "h": 675, "resize": "fit"}}, "media_key": "3_1448569169390280704", "ext_alt_text": null, "ext_media_availability": {"status": "available"}, "ext_media_color": {"palette": [{"rgb": {"red": 216, "green": 215, "blue": 215}, "percentage": 55.98}, {"rgb": {"red": 73, "green": 75, "blue": 64}, "percentage": 24.45}, {"rgb": {"red": 109, "green": 118, "blue": 103}, "percentage": 16.17}, {"rgb": {"red": 205, "green": 149, "blue": 150}, "percentage": 5.24}, {"rgb": {"red": 196, "green": 96, "blue": 99}, "percentage": 0.46}]}, "ext": {"mediaStats": {"r": "Missing", "ttl": -1}}}]}, "source": "<a href=\"https://about.twitter.com/products/tweetdeck\" rel=\"nofollow\">TweetDeck</a>", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user_id": 194399035, "user_id_str": "194399035", "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 2, "reply_count": 1, "quote_count": 0, "conversation_id": 1448569177426604036, "conversation_id_str": "1448569177426604036", "favorited": false, "retweeted": false, "possibly_sensitive": false, "possibly_sensitive_editable": true, "lang": "pl", "supplemental_language": null}}
{"object_type": "TweetRaw", "download_datetime": "2021-10-14T13:13:23.912518+02:00", "raw_value": {"created_at": "Thu Oct 14 08:33:03 +0000 2021", "id": 1448567517836988417, "id_str": "1448567517836988417", "full_text": "\ud83d\udd34 539 nowych zaka\u017ce\u0144 #koronawirus na Mazowszu. W ca\u0142ej Polsce odnotowano dzi\u015b kolejne 3 tys. chorych. W wyniku #COVID19 zmar\u0142o 60 os\u00f3b", "truncated": false, "display_text_range": [0, 134], "entities": {"hashtags": [{"text": "koronawirus", "indices": [21, 33]}, {"text": "COVID19", "indices": [111, 119]}], "symbols": [], "user_mentions": [], "urls": []}, "source": "<a href=\"https://mobile.twitter.com\" rel=\"nofollow\">Twitter Web App</a>", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user_id": 193735706, "user_id_str": "193735706", "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1448567048842383361, "quoted_status_id_str": "1448567048842383361", "quoted_status_permalink": {"url": "https://t.co/cJKnJDHx6f", "expanded": "https://twitter.com/MZ_GOV_PL/status/1448567048842383361", "display": "twitter.com/MZ_GOV_PL/stat\u2026"}, "retweet_count": 0, "favorite_count": 0, "reply_count": 0, "quote_count": 0, "conversation_id": 1448567517836988417, "conversation_id_str": "1448567517836988417", "favorited": false, "retweeted": false, "lang": "pl", "supplemental_language": null}}
{"object_type": "TweetRaw", "download_datetime": "2021-10-14T13:13:23.912688+02:00", "raw_value": {"created_at": "Thu Oct 14 09:00:02 +0000 2021", "id": 1448574308268187650, "id_str": "1448574308268187650", "full_text": "\u2757 Dobra wiadomo\u015b\u0107 z frontu walki z wirusem: WHO informuje, \u017ce spada liczba nowych zgon\u00f3w z powodu COVID-19.\n\nDeaths from #COVID19 worldwide continue to decline, #WHO says.\n#\u015awiat\n\u2b07\ufe0f https://t.co/p9NtIldW8a", "truncated": false, "display_text_range": [0, 181], "entities": {"hashtags": [{"text": "COVID19", "indices": [121, 129]}, {"text": "WHO", "indices": [161, 165]}, {"text": "\u015awiat", "indices": [172, 178]}], "symbols": [], "user_mentions": [], "urls": [], "media": [{"id": 1448346424152928258, "id_str": "1448346424152928258", "indices": [182, 205], "media_url": "http://pbs.twimg.com/media/FBmPx3_WEAEVgAQ.jpg", "media_url_https": "https://pbs.twimg.com/media/FBmPx3_WEAEVgAQ.jpg", "url": "https://t.co/p9NtIldW8a", "display_url": "pic.twitter.com/p9NtIldW8a", "expanded_url": "https://twitter.com/wojciechce/status/1448574308268187650/video/1", "type": "photo", "original_info": {"width": 640, "height": 360}, "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 640, "h": 360, "resize": "fit"}, "medium": {"w": 640, "h": 360, "resize": "fit"}, "small": {"w": 640, "h": 360, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 1448346424152928258, "id_str": "1448346424152928258", "indices": [182, 205], "media_url": "http://pbs.twimg.com/media/FBmPx3_WEAEVgAQ.jpg", "media_url_https": "https://pbs.twimg.com/media/FBmPx3_WEAEVgAQ.jpg", "url": "https://t.co/p9NtIldW8a", "display_url": "pic.twitter.com/p9NtIldW8a", "expanded_url": "https://twitter.com/wojciechce/status/1448574308268187650/video/1", "type": "video", "original_info": {"width": 640, "height": 360}, "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 640, "h": 360, "resize": "fit"}, "medium": {"w": 640, "h": 360, "resize": "fit"}, "small": {"w": 640, "h": 360, "resize": "fit"}}, "video_info": {"aspect_ratio": [16, 9], "duration_millis": 32920, "variants": [{"content_type": "application/x-mpegURL", "url": "https://video.twimg.com/amplify_video/1448346424152928258/pl/mWzZcQOlnWJR9dS2.m3u8?tag=14&v=bad"}, {"bitrate": 2176000, "content_type": "video/mp4", "url": "https://video.twimg.com/amplify_video/1448346424152928258/vid/1280x720/AxAu9GUDaK33aADX.mp4?tag=14"}, {"bitrate": 832000, "content_type": "video/mp4", "url": "https://video.twimg.com/amplify_video/1448346424152928258/vid/640x360/COfHIsP6BlklmbQx.mp4?tag=14"}, {"bitrate": 288000, "content_type": "video/mp4", "url": "https://video.twimg.com/amplify_video/1448346424152928258/vid/480x270/y-Ritmrl7ov6SaCv.mp4?tag=14"}]}, "media_key": "13_1448346424152928258", "ext_alt_text": null, "ext_media_color": {"palette": [{"rgb": {"red": 17, "green": 24, "blue": 31}, "percentage": 99.32}, {"rgb": {"red": 49, "green": 47, "blue": 85}, "percentage": 0.37}, {"rgb": {"red": 95, "green": 57, "blue": 39}, "percentage": 0.22}]}, "ext_media_availability": {"status": "available"}, "ext": {"mediaStats": {"r": {"ok": {"viewCount": "93"}}, "ttl": -1}}, "additional_media_info": {"title": "Spada liczba zgon\u00f3w z powodu COVID-19", "description": "Spada liczba nowych zgon\u00f3w spowodowanych przez COVID-19 - informuje \u015awiatowa Organizacja Zdrowia. W ubieg\u0142ym tygodniu zmar\u0142o najmniej os\u00f3b od ponad roku.", "call_to_actions": {"watch_now": {"url": "https://youtu.be/uuId64P8sIE"}}, "embeddable": true, "monetizable": false}}]}, "source": "<a href=\"https://studio.twitter.com\" rel=\"nofollow\">Twitter Media Studio</a>", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user_id": 210005449, "user_id_str": "210005449", "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "reply_count": 0, "quote_count": 0, "conversation_id": 1448574308268187650, "conversation_id_str": "1448574308268187650", "favorited": false, "retweeted": false, "possibly_sensitive": false, "possibly_sensitive_editable": true, "lang": "pl", "supplemental_language": null}}
{"object_type": "TweetRaw", "download_datetime": "2021-10-14T13:13:23.912784+02:00", "raw_value": {"created_at": "Thu Oct 14 08:34:16 +0000 2021", "id": 1448567823874334722, "id_str": "1448567823874334722", "full_text": "R\u00f3wne 3000 nowych zaka\u017ce\u0144 #koronawirus i 60 ofiar #COVID19. Ciekawe, kiedy doczekamy si\u0119 reakcji ze strony MZ...", "truncated": false, "display_text_range": [0, 112], "entities": {"hashtags": [{"text": "koronawirus", "indices": [26, 38]}, {"text": "COVID19", "indices": [50, 58]}], "symbols": [], "user_mentions": [], "urls": []}, "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user_id": 2374445305, "user_id_str": "2374445305", "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "reply_count": 0, "quote_count": 0, "conversation_id": 1448567823874334722, "conversation_id_str": "1448567823874334722", "favorited": false, "retweeted": false, "lang": "pl", "supplemental_language": null}}
{"object_type": "TweetRaw", "download_datetime": "2021-10-14T13:13:23.912966+02:00", "raw_value": {"created_at": "Thu Oct 14 10:10:26 +0000 2021", "id": 1448592022647058433, "id_str": "1448592022647058433", "full_text": "W IV kw. 2020 r., po wzro\u015bcie liczby zachorowa\u0144 zwi\u0105zanych z pandemi\u0105 #COVID19, liczba os\u00f3b regularnie pracuj\u0105cych zdalnie wynios\u0142a 1009 tys., w III kw. 2020 r. by\u0142o to 520 tys. os\u00f3b, a w II kw. 2020 r. 1493 tys. os\u00f3b. \n\nhttps://t.co/EVHolXXqDZ\n\n#GUS #statystyki #RynekPracy https://t.co/cK1pAhwEuc", "truncated": false, "display_text_range": [0, 274], "entities": {"hashtags": [{"text": "COVID19", "indices": [70, 78]}, {"text": "GUS", "indices": [246, 250]}, {"text": "statystyki", "indices": [251, 262]}, {"text": "RynekPracy", "indices": [263, 274]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/EVHolXXqDZ", "expanded_url": "https://bit.ly/3lGYELS", "display_url": "bit.ly/3lGYELS", "indices": [221, 244]}], "media": [{"id": 1448591410161147924, "id_str": "1448591410161147924", "indices": [275, 298], "media_url": "http://pbs.twimg.com/media/FBpuNmtWYBQuGWd.jpg", "media_url_https": "https://pbs.twimg.com/media/FBpuNmtWYBQuGWd.jpg", "url": "https://t.co/cK1pAhwEuc", "display_url": "pic.twitter.com/cK1pAhwEuc", "expanded_url": "https://twitter.com/GUS_STAT/status/1448592022647058433/photo/1", "type": "photo", "original_info": {"width": 336, "height": 437, "focus_rects": [{"x": 0, "y": 249, "h": 188, "w": 336}, {"x": 0, "y": 101, "h": 336, "w": 336}, {"x": 0, "y": 54, "h": 383, "w": 336}, {"x": 117, "y": 0, "h": 437, "w": 219}, {"x": 0, "y": 0, "h": 437, "w": 336}]}, "sizes": {"medium": {"w": 336, "h": 437, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 336, "h": 437, "resize": "fit"}, "large": {"w": 336, "h": 437, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 1448591410161147924, "id_str": "1448591410161147924", "indices": [275, 298], "media_url": "http://pbs.twimg.com/media/FBpuNmtWYBQuGWd.jpg", "media_url_https": "https://pbs.twimg.com/media/FBpuNmtWYBQuGWd.jpg", "url": "https://t.co/cK1pAhwEuc", "display_url": "pic.twitter.com/cK1pAhwEuc", "expanded_url": "https://twitter.com/GUS_STAT/status/1448592022647058433/photo/1", "type": "photo", "original_info": {"width": 336, "height": 437, "focus_rects": [{"x": 0, "y": 249, "h": 188, "w": 336}, {"x": 0, "y": 101, "h": 336, "w": 336}, {"x": 0, "y": 54, "h": 383, "w": 336}, {"x": 117, "y": 0, "h": 437, "w": 219}, {"x": 0, "y": 0, "h": 437, "w": 336}]}, "sizes": {"medium": {"w": 336, "h": 437, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 336, "h": 437, "resize": "fit"}, "large": {"w": 336, "h": 437, "resize": "fit"}}, "media_key": "3_1448591410161147924", "ext_media_color": {"palette": [{"rgb": {"red": 255, "green": 255, "blue": 255}, "percentage": 64.93}, {"rgb": {"red": 23, "green": 132, "blue": 142}, "percentage": 31.23}, {"rgb": {"red": 141, "green": 196, "blue": 76}, "percentage": 0.74}, {"rgb": {"red": 90, "green": 169, "blue": 105}, "percentage": 0.66}, {"rgb": {"red": 143, "green": 211, "blue": 214}, "percentage": 0.42}]}, "ext_alt_text": null, "ext_media_availability": {"status": "available"}, "ext": {"mediaStats": {"r": "Missing", "ttl": -1}}}]}, "source": "<a href=\"https://mobile.twitter.com\" rel=\"nofollow\">Twitter Web App</a>", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user_id": 790806417468952576, "user_id_str": "790806417468952576", "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 2, "reply_count": 0, "quote_count": 0, "conversation_id": 1448592022647058433, "conversation_id_str": "1448592022647058433", "favorited": false, "retweeted": false, "possibly_sensitive": false, "possibly_sensitive_editable": true, "lang": "pl", "supplemental_language": null}}
{"object_type": "TweetRaw", "download_datetime": "2021-10-14T13:13:23.913656+02:00", "raw_value": {"created_at": "Thu Oct 14 08:56:14 +0000 2021", "id": 1448573351740444672, "id_str": "1448573351740444672", "full_text": "Powiat pszczy\u0144ski\n#COVID19 #Pszczyna\n\n\u015ar. liczba zachorowa\u0144 na 100tys.os\u00f3b/7 dni - 1,28\u26aa\ufe0f(07.10. 0,77\u2b07\ufe0f) https://t.co/Ma7a9iqfAp", "truncated": false, "display_text_range": [0, 104], "entities": {"hashtags": [{"text": "COVID19", "indices": [18, 26]}, {"text": "Pszczyna", "indices": [27, 36]}], "symbols": [], "user_mentions": [], "urls": [], "media": [{"id": 1448573263370727436, "id_str": "1448573263370727436", "indices": [105, 128], "media_url": "http://pbs.twimg.com/media/FBpdtUpXMAwSmML.png", "media_url_https": "https://pbs.twimg.com/media/FBpdtUpXMAwSmML.png", "url": "https://t.co/Ma7a9iqfAp", "display_url": "pic.twitter.com/Ma7a9iqfAp", "expanded_url": "https://twitter.com/andrzej___j/status/1448573351740444672/photo/1", "type": "photo", "original_info": {"width": 849, "height": 782, "focus_rects": [{"x": 0, "y": 307, "h": 475, "w": 849}, {"x": 0, "y": 0, "h": 782, "w": 782}, {"x": 0, "y": 0, "h": 782, "w": 686}, {"x": 80, "y": 0, "h": 782, "w": 391}, {"x": 0, "y": 0, "h": 782, "w": 849}]}, "sizes": {"large": {"w": 849, "h": 782, "resize": "fit"}, "small": {"w": 680, "h": 626, "resize": "fit"}, "medium": {"w": 849, "h": 782, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}}}, {"id": 1448573279485272064, "id_str": "1448573279485272064", "indices": [105, 128], "media_url": "http://pbs.twimg.com/media/FBpduQrXoAAKItd.png", "media_url_https": "https://pbs.twimg.com/media/FBpduQrXoAAKItd.png", "url": "https://t.co/Ma7a9iqfAp", "display_url": "pic.twitter.com/Ma7a9iqfAp", "expanded_url": "https://twitter.com/andrzej___j/status/1448573351740444672/photo/1", "type": "photo", "original_info": {"width": 851, "height": 782, "focus_rects": [{"x": 0, "y": 305, "h": 477, "w": 851}, {"x": 0, "y": 0, "h": 782, "w": 782}, {"x": 0, "y": 0, "h": 782, "w": 686}, {"x": 0, "y": 0, "h": 782, "w": 391}, {"x": 0, "y": 0, "h": 782, "w": 851}]}, "sizes": {"large": {"w": 851, "h": 782, "resize": "fit"}, "medium": {"w": 851, "h": 782, "resize": "fit"}, "small": {"w": 680, "h": 625, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}}}, {"id": 1448573304302936064, "id_str": "1448573304302936064", "indices": [105, 128], "media_url": "http://pbs.twimg.com/media/FBpdvtIXIAA3N1K.png", "media_url_https": "https://pbs.twimg.com/media/FBpdvtIXIAA3N1K.png", "url": "https://t.co/Ma7a9iqfAp", "display_url": "pic.twitter.com/Ma7a9iqfAp", "expanded_url": "https://twitter.com/andrzej___j/status/1448573351740444672/photo/1", "type": "photo", "original_info": {"width": 833, "height": 784, "focus_rects": [{"x": 0, "y": 318, "h": 466, "w": 833}, {"x": 49, "y": 0, "h": 784, "w": 784}, {"x": 145, "y": 0, "h": 784, "w": 688}, {"x": 441, "y": 0, "h": 784, "w": 392}, {"x": 0, "y": 0, "h": 784, "w": 833}]}, "sizes": {"medium": {"w": 833, "h": 784, "resize": "fit"}, "small": {"w": 680, "h": 640, "resize": "fit"}, "large": {"w": 833, "h": 784, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}}}, {"id": 1448573340625604615, "id_str": "1448573340625604615", "indices": [105, 128], "media_url": "http://pbs.twimg.com/media/FBpdx0cXEAczmgu.png", "media_url_https": "https://pbs.twimg.com/media/FBpdx0cXEAczmgu.png", "url": "https://t.co/Ma7a9iqfAp", "display_url": "pic.twitter.com/Ma7a9iqfAp", "expanded_url": "https://twitter.com/andrzej___j/status/1448573351740444672/photo/1", "type": "photo", "original_info": {"width": 493, "height": 304, "focus_rects": [{"x": 0, "y": 28, "h": 276, "w": 493}, {"x": 189, "y": 0, "h": 304, "w": 304}, {"x": 226, "y": 0, "h": 304, "w": 267}, {"x": 330, "y": 0, "h": 304, "w": 152}, {"x": 0, "y": 0, "h": 304, "w": 493}]}, "sizes": {"medium": {"w": 493, "h": 304, "resize": "fit"}, "small": {"w": 493, "h": 304, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 493, "h": 304, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 1448573263370727436, "id_str": "1448573263370727436", "indices": [105, 128], "media_url": "http://pbs.twimg.com/media/FBpdtUpXMAwSmML.png", "media_url_https": "https://pbs.twimg.com/media/FBpdtUpXMAwSmML.png", "url": "https://t.co/Ma7a9iqfAp", "display_url": "pic.twitter.com/Ma7a9iqfAp", "expanded_url": "https://twitter.com/andrzej___j/status/1448573351740444672/photo/1", "type": "photo", "original_info": {"width": 849, "height": 782, "focus_rects": [{"x": 0, "y": 307, "h": 475, "w": 849}, {"x": 0, "y": 0, "h": 782, "w": 782}, {"x": 0, "y": 0, "h": 782, "w": 686}, {"x": 80, "y": 0, "h": 782, "w": 391}, {"x": 0, "y": 0, "h": 782, "w": 849}]}, "sizes": {"large": {"w": 849, "h": 782, "resize": "fit"}, "small": {"w": 680, "h": 626, "resize": "fit"}, "medium": {"w": 849, "h": 782, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}}, "media_key": "3_1448573263370727436", "ext_alt_text": null, "ext_media_availability": {"status": "available"}, "ext_media_color": {"palette": [{"rgb": {"red": 255, "green": 255, "blue": 255}, "percentage": 96.07}, {"rgb": {"red": 159, "green": 201, "blue": 231}, "percentage": 1.26}, {"rgb": {"red": 255, "green": 195, "blue": 195}, "percentage": 0.64}, {"rgb": {"red": 255, "green": 154, "blue": 154}, "percentage": 0.51}, {"rgb": {"red": 212, "green": 236, "blue": 186}, "percentage": 0.43}]}, "ext": {"mediaStats": {"r": "Missing", "ttl": -1}}}, {"id": 1448573279485272064, "id_str": "1448573279485272064", "indices": [105, 128], "media_url": "http://pbs.twimg.com/media/FBpduQrXoAAKItd.png", "media_url_https": "https://pbs.twimg.com/media/FBpduQrXoAAKItd.png", "url": "https://t.co/Ma7a9iqfAp", "display_url": "pic.twitter.com/Ma7a9iqfAp", "expanded_url": "https://twitter.com/andrzej___j/status/1448573351740444672/photo/1", "type": "photo", "original_info": {"width": 851, "height": 782, "focus_rects": [{"x": 0, "y": 305, "h": 477, "w": 851}, {"x": 0, "y": 0, "h": 782, "w": 782}, {"x": 0, "y": 0, "h": 782, "w": 686}, {"x": 0, "y": 0, "h": 782, "w": 391}, {"x": 0, "y": 0, "h": 782, "w": 851}]}, "sizes": {"large": {"w": 851, "h": 782, "resize": "fit"}, "medium": {"w": 851, "h": 782, "resize": "fit"}, "small": {"w": 680, "h": 625, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}}, "media_key": "3_1448573279485272064", "ext_media_color": {"palette": [{"rgb": {"red": 255, "green": 255, "blue": 255}, "percentage": 99.85}]}, "ext_alt_text": null, "ext_media_availability": {"status": "available"}, "ext": {"mediaStats": {"r": "Missing", "ttl": -1}}}, {"id": 1448573304302936064, "id_str": "1448573304302936064", "indices": [105, 128], "media_url": "http://pbs.twimg.com/media/FBpdvtIXIAA3N1K.png", "media_url_https": "https://pbs.twimg.com/media/FBpdvtIXIAA3N1K.png", "url": "https://t.co/Ma7a9iqfAp", "display_url": "pic.twitter.com/Ma7a9iqfAp", "expanded_url": "https://twitter.com/andrzej___j/status/1448573351740444672/photo/1", "type": "photo", "original_info": {"width": 833, "height": 784, "focus_rects": [{"x": 0, "y": 318, "h": 466, "w": 833}, {"x": 49, "y": 0, "h": 784, "w": 784}, {"x": 145, "y": 0, "h": 784, "w": 688}, {"x": 441, "y": 0, "h": 784, "w": 392}, {"x": 0, "y": 0, "h": 784, "w": 833}]}, "sizes": {"medium": {"w": 833, "h": 784, "resize": "fit"}, "small": {"w": 680, "h": 640, "resize": "fit"}, "large": {"w": 833, "h": 784, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}}, "media_key": "3_1448573304302936064", "ext_alt_text": null, "ext_media_availability": {"status": "available"}, "ext_media_color": {"palette": [{"rgb": {"red": 255, "green": 255, "blue": 255}, "percentage": 99.65}, {"rgb": {"red": 210, "green": 206, "blue": 202}, "percentage": 0.15}, {"rgb": {"red": 130, "green": 136, "blue": 139}, "percentage": 0.12}]}, "ext": {"mediaStats": {"r": "Missing", "ttl": -1}}}, {"id": 1448573340625604615, "id_str": "1448573340625604615", "indices": [105, 128], "media_url": "http://pbs.twimg.com/media/FBpdx0cXEAczmgu.png", "media_url_https": "https://pbs.twimg.com/media/FBpdx0cXEAczmgu.png", "url": "https://t.co/Ma7a9iqfAp", "display_url": "pic.twitter.com/Ma7a9iqfAp", "expanded_url": "https://twitter.com/andrzej___j/status/1448573351740444672/photo/1", "type": "photo", "original_info": {"width": 493, "height": 304, "focus_rects": [{"x": 0, "y": 28, "h": 276, "w": 493}, {"x": 189, "y": 0, "h": 304, "w": 304}, {"x": 226, "y": 0, "h": 304, "w": 267}, {"x": 330, "y": 0, "h": 304, "w": 152}, {"x": 0, "y": 0, "h": 304, "w": 493}]}, "sizes": {"medium": {"w": 493, "h": 304, "resize": "fit"}, "small": {"w": 493, "h": 304, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 493, "h": 304, "resize": "fit"}}, "media_key": "3_1448573340625604615", "ext_alt_text": null, "ext_media_availability": {"status": "available"}, "ext_media_color": {"palette": [{"rgb": {"red": 255, "green": 255, "blue": 255}, "percentage": 97.3}, {"rgb": {"red": 124, "green": 126, "blue": 131}, "percentage": 0.98}, {"rgb": {"red": 209, "green": 205, "blue": 202}, "percentage": 0.86}, {"rgb": {"red": 131, "green": 166, "blue": 208}, "percentage": 0.7}, {"rgb": {"red": 106, "green": 134, "blue": 168}, "percentage": 0.2}]}, "ext": {"mediaStats": {"r": "Missing", "ttl": -1}}}]}, "source": "<a href=\"https://mobile.twitter.com\" rel=\"nofollow\">Twitter Web App</a>", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user_id": 1122436589022478336, "user_id_str": "1122436589022478336", "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "reply_count": 0, "quote_count": 0, "conversation_id": 1448573351740444672, "conversation_id_str": "1448573351740444672", "favorited": false, "retweeted": false, "possibly_sensitive": false, "possibly_sensitive_editable": true, "lang": "pl", "supplemental_language": null}}
{"object_type": "TweetRaw", "download_datetime": "2021-10-14T13:13:23.913789+02:00", "raw_value": {"created_at": "Thu Oct 14 09:38:20 +0000 2021", "id": 1448583945004756998, "id_str": "1448583945004756998", "full_text": "Co nieco o tym, jak zdoby\u0107 #iwermektyna na #covid19 #koronawirus.", "truncated": false, "display_text_range": [0, 65], "entities": {"hashtags": [{"text": "iwermektyna", "indices": [27, 39]}, {"text": "covid19", "indices": [43, 51]}, {"text": "koronawirus", "indices": [52, 64]}], "symbols": [], "user_mentions": [], "urls": []}, "source": "<a href=\"https://mobile.twitter.com\" rel=\"nofollow\">Twitter Web App</a>", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user_id": 911978702107480064, "user_id_str": "911978702107480064", "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1448345716481527810, "quoted_status_id_str": "1448345716481527810", "quoted_status_permalink": {"url": "https://t.co/cgWVaOZoLZ", "expanded": "https://twitter.com/AnnBu14366909/status/1448345716481527810", "display": "twitter.com/AnnBu14366909/\u2026"}, "retweet_count": 0, "favorite_count": 0, "reply_count": 0, "quote_count": 0, "conversation_id": 1448583945004756998, "conversation_id_str": "1448583945004756998", "favorited": false, "retweeted": false, "lang": "pl", "supplemental_language": null}}
{"object_type": "TweetRaw", "download_datetime": "2021-10-14T13:13:23.913902+02:00", "raw_value": {"created_at": "Thu Oct 14 09:29:07 +0000 2021", "id": 1448581627110641664, "id_str": "1448581627110641664", "full_text": "Mo\u017ce @MZ_GOV_PL i @GIS_gov odpowiedz\u0105 na pytanie dlaczego nie wykorzystuj\u0105 polskiego Covid Detecora do zwalczania pandemii #koronawirus? Badanie ad hoc w plac\u00f3wkach o\u015bwiatowych i szpitalach znacznie zmniejszy\u0142oby ilo\u015b\u0107 nara\u017conych na zaka\u017cenie. \n\n#koronawiruswpolsce #COVID19", "truncated": false, "display_text_range": [0, 274], "entities": {"hashtags": [{"text": "koronawirus", "indices": [123, 135]}, {"text": "koronawiruswpolsce", "indices": [246, 265]}, {"text": "COVID19", "indices": [266, 274]}], "symbols": [], "user_mentions": [{"screen_name": "MZ_GOV_PL", "name": "Ministerstwo Zdrowia", "id": 462886126, "id_str": "462886126", "indices": [5, 15]}, {"screen_name": "GIS_gov", "name": "G\u0142\u00f3wny Inspektorat Sanitarny", "id": 550156790, "id_str": "550156790", "indices": [18, 26]}], "urls": []}, "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user_id": 1303245998328811522, "user_id_str": "1303245998328811522", "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 1, "favorite_count": 1, "reply_count": 0, "quote_count": 0, "conversation_id": 1448581627110641664, "conversation_id_str": "1448581627110641664", "favorited": false, "retweeted": false, "lang": "pl", "supplemental_language": null}}
{"object_type": "TweetRaw", "download_datetime": "2021-10-14T13:13:23.914087+02:00", "raw_value": {"created_at": "Thu Oct 14 08:37:43 +0000 2021", "id": 1448568690216144898, "id_str": "1448568690216144898", "full_text": "Szybki wzrost zaka\u017ce\u0144. @MZ_GOV_PL  14 pa\u017adziernika zanotowano 3000 przypadk\u00f3w zaka\u017ce\u0144 #koronawirus  . To zdecydowanie wi\u0119cej ni\u017c tydzie\u0144 temu (2007 przypadk\u00f3w 7.10). 60 os\u00f3b zmar\u0142o z powodu #COVID19 i chor\u00f3b wsp\u00f3\u0142istniej\u0105cych (29 zgon\u00f3w tydzie\u0144 temu).\nhttps://t.co/2SMKr8DRYL", "truncated": false, "display_text_range": [0, 275], "entities": {"hashtags": [{"text": "koronawirus", "indices": [86, 98]}, {"text": "COVID19", "indices": [190, 198]}], "symbols": [], "user_mentions": [{"screen_name": "MZ_GOV_PL", "name": "Ministerstwo Zdrowia", "id": 462886126, "id_str": "462886126", "indices": [23, 33]}], "urls": [{"url": "https://t.co/2SMKr8DRYL", "expanded_url": "https://www.infodent24.pl/newsdentpost/koronawirus-14-pazdziernika-kolejny-dzien-wzrostow-zakazen,119302.html", "display_url": "infodent24.pl/newsdentpost/k\u2026", "indices": [252, 275]}]}, "source": "<a href=\"https://mobile.twitter.com\" rel=\"nofollow\">Twitter Web App</a>", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user_id": 2383647524, "user_id_str": "2383647524", "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "reply_count": 0, "quote_count": 0, "conversation_id": 1448568690216144898, "conversation_id_str": "1448568690216144898", "favorited": false, "retweeted": false, "possibly_sensitive": false, "possibly_sensitive_editable": true, "card": {"name": "summary_large_image", "url": "https://t.co/2SMKr8DRYL", "card_type_url": "http://card-type-url-is-deprecated.invalid", "binding_values": {"vanity_url": {"type": "STRING", "string_value": "infodent24.pl", "scribe_key": "vanity_url"}, "amp": {"type": "BOOLEAN", "boolean_value": true}, "domain": {"type": "STRING", "string_value": "www.infodent24.pl"}, "title": {"type": "STRING", "string_value": "Koronawirus 14 pa\u017adziernika: kolejny dzie\u0144 wzrost\u00f3w zaka\u017ce\u0144"}, "description": {"type": "STRING", "string_value": "Szybki wzrost zaka\u017ce\u0144. Wed\u0142ug Ministerstwa Zdrowia\u00a014 pa\u017adziernika 2021 r. zanotowano 3000 przypadk\u00f3w zaka\u017ce\u0144 koronawirusem (dane dobowe ze \u015brody 13 pa\u017adziernika 2021 r.). To zdecydowanie wi\u0119cej ni\u017c..."}, "thumbnail_image_small": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448568401153101825/pP19fD_-?format=jpg&name=100x100", "width": 100, "height": 67, "alt": null}}, "thumbnail_image": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448568401153101825/pP19fD_-?format=jpg&name=280x150", "width": 225, "height": 150, "alt": null}}, "thumbnail_image_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448568401153101825/pP19fD_-?format=jpg&name=800x320_1", "width": 480, "height": 320, "alt": null}}, "thumbnail_image_x_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448568401153101825/pP19fD_-?format=png&name=2048x2048_2_exp", "width": 619, "height": 413, "alt": null}}, "thumbnail_image_original": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448568401153101825/pP19fD_-?format=jpg&name=orig", "width": 619, "height": 413, "alt": null}}, "summary_photo_image_small": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448568401153101825/pP19fD_-?format=jpg&name=386x202", "width": 386, "height": 202, "alt": null}}, "summary_photo_image": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448568401153101825/pP19fD_-?format=jpg&name=600x314", "width": 600, "height": 314, "alt": null}}, "summary_photo_image_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448568401153101825/pP19fD_-?format=jpg&name=800x419", "width": 619, "height": 324, "alt": null}}, "summary_photo_image_x_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448568401153101825/pP19fD_-?format=png&name=2048x2048_2_exp", "width": 619, "height": 413, "alt": null}}, "summary_photo_image_original": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448568401153101825/pP19fD_-?format=jpg&name=orig", "width": 619, "height": 413, "alt": null}}, "photo_image_full_size_small": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448568401153101825/pP19fD_-?format=jpg&name=386x202", "width": 386, "height": 202, "alt": null}}, "photo_image_full_size": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448568401153101825/pP19fD_-?format=jpg&name=600x314", "width": 600, "height": 314, "alt": null}}, "photo_image_full_size_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448568401153101825/pP19fD_-?format=jpg&name=800x419", "width": 619, "height": 324, "alt": null}}, "photo_image_full_size_x_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448568401153101825/pP19fD_-?format=png&name=2048x2048_2_exp", "width": 619, "height": 413, "alt": null}}, "photo_image_full_size_original": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448568401153101825/pP19fD_-?format=jpg&name=orig", "width": 619, "height": 413, "alt": null}}, "card_url": {"type": "STRING", "string_value": "https://t.co/2SMKr8DRYL", "scribe_key": "card_url"}}, "card_platform": {"platform": {"device": {"name": "Swift", "version": "12"}, "audience": {"name": "production", "bucket": null}}}}, "lang": "pl", "supplemental_language": null}}
{"object_type": "TweetRaw", "download_datetime": "2021-10-14T13:13:23.914356+02:00", "raw_value": {"created_at": "Thu Oct 14 08:50:48 +0000 2021", "id": 1448571981637554180, "id_str": "1448571981637554180", "full_text": "Niesamowite... Kto\u015b przewidzia\u0142 czasy, kt\u00f3re dzi\u015b nadesz\u0142y.\n\nZe szczeg\u00f3ln\u0105 dedykacj\u0105 dla:\n@szczepimysie \n@PremierRP \n@MZ_GOV_PL \n@a_niedzielski \n\n#OstatniaProsta \n#szczepimysie \n#COVID19 \nhttps://t.co/aeG60YHbou", "truncated": false, "display_text_range": [0, 211], "entities": {"hashtags": [{"text": "OstatniaProsta", "indices": [146, 161]}, {"text": "szczepimysie", "indices": [163, 176]}, {"text": "COVID19", "indices": [178, 186]}], "symbols": [], "user_mentions": [{"screen_name": "szczepimysie", "name": "#SzczepimySi\u0119", "id": 1346846950080081920, "id_str": "1346846950080081920", "indices": [90, 103]}, {"screen_name": "PremierRP", "name": "Kancelaria Premiera", "id": 57626153, "id_str": "57626153", "indices": [105, 115]}, {"screen_name": "MZ_GOV_PL", "name": "Ministerstwo Zdrowia", "id": 462886126, "id_str": "462886126", "indices": [117, 127]}, {"screen_name": "a_niedzielski", "name": "Adam Niedzielski", "id": 1377800274, "id_str": "1377800274", "indices": [129, 143]}], "urls": [{"url": "https://t.co/aeG60YHbou", "expanded_url": "https://youtu.be/xAXwrs2oPG4", "display_url": "youtu.be/xAXwrs2oPG4", "indices": [188, 211]}]}, "source": "<a href=\"https://mobile.twitter.com\" rel=\"nofollow\">Twitter Web App</a>", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user_id": 2153092339, "user_id_str": "2153092339", "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 1, "favorite_count": 4, "reply_count": 3, "quote_count": 0, "conversation_id": 1448571981637554180, "conversation_id_str": "1448571981637554180", "favorited": false, "retweeted": false, "possibly_sensitive": false, "possibly_sensitive_editable": true, "card": {"name": "player", "url": "https://t.co/aeG60YHbou", "card_type_url": "http://card-type-url-is-deprecated.invalid", "binding_values": {"vanity_url": {"type": "STRING", "string_value": "youtube.com", "scribe_key": "vanity_url"}, "player_url": {"type": "STRING", "string_value": "https://www.youtube.com/embed/xAXwrs2oPG4"}, "app_is_free": {"type": "STRING", "string_value": "true"}, "app_price_currency": {"type": "STRING", "string_value": "USD"}, "app_price_amount": {"type": "STRING", "string_value": "0.0"}, "domain": {"type": "STRING", "string_value": "www.youtube.com"}, "app_num_ratings": {"type": "STRING", "string_value": "22,687,489"}, "app_star_rating": {"type": "STRING", "string_value": "4.68756"}, "app_name": {"type": "STRING", "string_value": "YouTube: Watch, Listen, Stream"}, "player_width": {"type": "STRING", "string_value": "1280"}, "player_height": {"type": "STRING", "string_value": "720"}, "site": {"type": "USER", "user_value": {"id_str": "10228272", "path": []}, "scribe_key": "publisher_id"}, "title": {"type": "STRING", "string_value": "Wojna \u015awiat\u00f3w - Nast\u0119pne Stulecie"}, "description": {"type": "STRING", "string_value": "To zaledwie tylko kilka scen z wizjonerskiego filmu sci-fi w re\u017cyserii Piotra Szulkina (z 1981 roku), kt\u00f3ry z miesi\u0105ca na miesi\u0105c, z roku na rok, z dekady na..."}, "player_image_small": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1447651165559214084/UOj6v-VV?format=jpg&name=144x144", "width": 144, "height": 108, "alt": null}}, "player_image": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1447651165559214084/UOj6v-VV?format=jpg&name=280x280", "width": 280, "height": 210, "alt": null}}, "player_image_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1447651165559214084/UOj6v-VV?format=jpg&name=1200x627", "width": 1200, "height": 627, "alt": null}}, "player_image_x_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1447651165559214084/UOj6v-VV?format=png&name=2048x2048_2_exp", "width": 480, "height": 360, "alt": null}}, "player_image_original": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1447651165559214084/UOj6v-VV?format=jpg&name=orig", "width": 480, "height": 360, "alt": null}}, "card_url": {"type": "STRING", "string_value": "https://t.co/aeG60YHbou", "scribe_key": "card_url"}}, "users": {"10228272": {"id": 10228272, "id_str": "10228272", "name": "YouTube", "screen_name": "YouTube", "location": "San Bruno, CA", "description": "#YouTubeShorts \u2014 Introducing the shorter side of YouTube", "url": "https://t.co/kjUK7E8YAQ", "entities": {"url": {"urls": [{"url": "https://t.co/kjUK7E8YAQ", "expanded_url": "https://www.youtube.com/shorts/H12SwqwR2NE", "display_url": "youtube.com/shorts/H12Swqw\u2026", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 73507207, "fast_followers_count": 0, "normal_followers_count": 73507207, "friends_count": 1202, "listed_count": 79530, "created_at": "Tue Nov 13 21:43:46 +0000 2007", "favourites_count": 5742, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": true, "statuses_count": 37541, "media_count": 13146, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": true, "profile_background_color": "AF0000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1427292844612595720/RC1YSvuT_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1427292844612595720/RC1YSvuT_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/10228272/1631634387", "profile_image_extensions_alt_text": null, "profile_image_extensions_media_availability": null, "profile_image_extensions_media_color": {"palette": [{"rgb": {"red": 255, "green": 255, "blue": 255}, "percentage": 70.88}, {"rgb": {"red": 254, "green": 0, "blue": 0}, "percentage": 27.69}, {"rgb": {"red": 252, "green": 180, "blue": 178}, "percentage": 0.86}, {"rgb": {"red": 254, "green": 87, "blue": 90}, "percentage": 0.37}, {"rgb": {"red": 250, "green": 132, "blue": 130}, "percentage": 0.15}]}, "profile_image_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_banner_extensions_alt_text": null, "profile_banner_extensions_media_availability": null, "profile_banner_extensions_media_color": {"palette": [{"rgb": {"red": 62, "green": 11, "blue": 140}, "percentage": 43.31}, {"rgb": {"red": 1, "green": 161, "blue": 75}, "percentage": 23.58}, {"rgb": {"red": 25, "green": 108, "blue": 87}, "percentage": 4.41}, {"rgb": {"red": 141, "green": 106, "blue": 31}, "percentage": 2.93}, {"rgb": {"red": 38, "green": 46, "blue": 118}, "percentage": 2.33}]}, "profile_banner_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_link_color": "C9191D", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "EFEFEF", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": false, "default_profile_image": false, "pinned_tweet_ids": [], "pinned_tweet_ids_str": [], "has_custom_timelines": true, "can_dm": null, "following": null, "follow_request_sent": null, "notifications": null, "muting": null, "blocking": null, "blocked_by": null, "want_retweets": null, "advertiser_account_type": "promotable_user", "advertiser_account_service_levels": ["dso", "dso", "dso", "dso", "dso", "dso", "dso", "dso", "dso"], "profile_interstitial_type": "", "business_profile_state": "none", "translator_type": "regular", "withheld_in_countries": [], "followed_by": null, "ext": {"highlightedLabel": {"r": {"ok": {}}, "ttl": -1}}, "require_some_consent": false}}, "card_platform": {"platform": {"device": {"name": "Swift", "version": "12"}, "audience": {"name": "production", "bucket": null}}}}, "lang": "pl", "supplemental_language": null}}
{"object_type": "TweetRaw", "download_datetime": "2021-10-14T13:13:23.914632+02:00", "raw_value": {"created_at": "Thu Oct 14 10:15:54 +0000 2021", "id": 1448593399322456066, "id_str": "1448593399322456066", "full_text": ".@MZ_GOV_PL planuje zawczasu zabezpieczy\u0107 dostawy na polski rynek obiecuj\u0105cego leku na #COVID19  - molnupiraviru. 13 pa\u017adziernika rz\u0105d mia\u0142 rozmawia\u0107 w tej sprawie z producentem.\nhttps://t.co/ohN1HlY2dB", "truncated": false, "display_text_range": [0, 202], "entities": {"hashtags": [{"text": "COVID19", "indices": [87, 95]}], "symbols": [], "user_mentions": [{"screen_name": "MZ_GOV_PL", "name": "Ministerstwo Zdrowia", "id": 462886126, "id_str": "462886126", "indices": [1, 11]}], "urls": [{"url": "https://t.co/ohN1HlY2dB", "expanded_url": "https://bit.ly/3p2eu5Q", "display_url": "bit.ly/3p2eu5Q", "indices": [179, 202]}]}, "source": "<a href=\"https://mobile.twitter.com\" rel=\"nofollow\">Twitter Web App</a>", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user_id": 976481460944359429, "user_id_str": "976481460944359429", "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 1, "favorite_count": 0, "reply_count": 0, "quote_count": 0, "conversation_id": 1448593399322456066, "conversation_id_str": "1448593399322456066", "favorited": false, "retweeted": false, "possibly_sensitive": false, "possibly_sensitive_editable": true, "card": {"name": "summary_large_image", "url": "https://t.co/ohN1HlY2dB", "card_type_url": "http://card-type-url-is-deprecated.invalid", "binding_values": {"vanity_url": {"type": "STRING", "string_value": "pulsmedycyny.pl", "scribe_key": "vanity_url"}, "amp": {"type": "BOOLEAN", "boolean_value": true}, "domain": {"type": "STRING", "string_value": "pulsmedycyny.pl"}, "site": {"type": "USER", "user_value": {"id_str": "976481460944359429", "path": []}, "scribe_key": "publisher_id"}, "title": {"type": "STRING", "string_value": "MZ prowadzi rozmowy na temat zakupu obiecuj\u0105cego leku na COVID-19 - molnupiraviru"}, "description": {"type": "STRING", "string_value": "Resort zdrowia planuje zawczasu zabezpieczy\u0107 dostawy na polski rynek obiecuj\u0105cego leku na COVID-19 - molnupiraviru. 13 pa\u017adziernika rz\u0105d mia\u0142 rozmawia\u0107 w tej sprawie z producentem."}, "thumbnail_image_small": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448593297413484547/AYjvCFRe?format=jpg&name=144x144", "width": 144, "height": 81, "alt": null}}, "thumbnail_image": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448593297413484547/AYjvCFRe?format=jpg&name=280x150", "width": 267, "height": 150, "alt": null}}, "thumbnail_image_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448593297413484547/AYjvCFRe?format=jpg&name=800x320_1", "width": 569, "height": 320, "alt": null}}, "thumbnail_image_x_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448593297413484547/AYjvCFRe?format=png&name=2048x2048_2_exp", "width": 1920, "height": 1080, "alt": null}}, "thumbnail_image_original": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448593297413484547/AYjvCFRe?format=jpg&name=orig", "width": 1920, "height": 1080, "alt": null}}, "summary_photo_image_small": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448593297413484547/AYjvCFRe?format=jpg&name=386x202", "width": 386, "height": 202, "alt": null}}, "summary_photo_image": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448593297413484547/AYjvCFRe?format=jpg&name=600x314", "width": 600, "height": 314, "alt": null}}, "summary_photo_image_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448593297413484547/AYjvCFRe?format=jpg&name=800x419", "width": 800, "height": 419, "alt": null}}, "summary_photo_image_x_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448593297413484547/AYjvCFRe?format=png&name=2048x2048_2_exp", "width": 1920, "height": 1080, "alt": null}}, "summary_photo_image_original": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448593297413484547/AYjvCFRe?format=jpg&name=orig", "width": 1920, "height": 1080, "alt": null}}, "photo_image_full_size_small": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448593297413484547/AYjvCFRe?format=jpg&name=386x202", "width": 386, "height": 202, "alt": null}}, "photo_image_full_size": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448593297413484547/AYjvCFRe?format=jpg&name=600x314", "width": 600, "height": 314, "alt": null}}, "photo_image_full_size_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448593297413484547/AYjvCFRe?format=jpg&name=800x419", "width": 800, "height": 419, "alt": null}}, "photo_image_full_size_x_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448593297413484547/AYjvCFRe?format=png&name=2048x2048_2_exp", "width": 1920, "height": 1080, "alt": null}}, "photo_image_full_size_original": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448593297413484547/AYjvCFRe?format=jpg&name=orig", "width": 1920, "height": 1080, "alt": null}}, "card_url": {"type": "STRING", "string_value": "https://t.co/ohN1HlY2dB", "scribe_key": "card_url"}}, "users": {"976481460944359429": {"id": 976481460944359429, "id_str": "976481460944359429", "name": "Puls Medycyny", "screen_name": "Puls_Medycyny", "location": "Warszawa, Polska", "description": "Specjalistyczny serwis medyczny dla lekarzy, farmaceut\u00f3w, student\u00f3w, os\u00f3b zwi\u0105zanych zawodowo z ochron\u0105 zdrowia oraz pacjent\u00f3w", "url": "https://t.co/rZtAVsVdD8", "entities": {"url": {"urls": [{"url": "https://t.co/rZtAVsVdD8", "expanded_url": "http://pulsmedycyny.pl/", "display_url": "pulsmedycyny.pl", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 4371, "fast_followers_count": 0, "normal_followers_count": 4371, "friends_count": 570, "listed_count": 29, "created_at": "Wed Mar 21 15:31:37 +0000 2018", "favourites_count": 1449, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 5131, "media_count": 496, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "F5F8FA", "profile_background_image_url": null, "profile_background_image_url_https": null, "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1014132149186912257/pZrLl_xO_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1014132149186912257/pZrLl_xO_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/976481460944359429/1629101350", "profile_image_extensions_alt_text": null, "profile_image_extensions_media_availability": null, "profile_image_extensions_media_color": {"palette": [{"rgb": {"red": 0, "green": 133, "blue": 166}, "percentage": 93.36}, {"rgb": {"red": 255, "green": 254, "blue": 253}, "percentage": 5.14}, {"rgb": {"red": 220, "green": 202, "blue": 162}, "percentage": 0.93}, {"rgb": {"red": 113, "green": 170, "blue": 161}, "percentage": 0.17}, {"rgb": {"red": 58, "green": 160, "blue": 172}, "percentage": 0.17}]}, "profile_image_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_banner_extensions_alt_text": null, "profile_banner_extensions_media_availability": null, "profile_banner_extensions_media_color": {"palette": [{"rgb": {"red": 246, "green": 240, "blue": 229}, "percentage": 50.51}, {"rgb": {"red": 231, "green": 202, "blue": 136}, "percentage": 24.02}, {"rgb": {"red": 242, "green": 228, "blue": 197}, "percentage": 8.79}, {"rgb": {"red": 70, "green": 182, "blue": 169}, "percentage": 6.85}, {"rgb": {"red": 48, "green": 84, "blue": 112}, "percentage": 3.85}]}, "profile_banner_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": true, "default_profile_image": false, "pinned_tweet_ids": [], "pinned_tweet_ids_str": [], "has_custom_timelines": true, "can_dm": null, "following": null, "follow_request_sent": null, "notifications": null, "muting": null, "blocking": null, "blocked_by": null, "want_retweets": null, "advertiser_account_type": "promotable_user", "advertiser_account_service_levels": ["analytics"], "profile_interstitial_type": "", "business_profile_state": "none", "translator_type": "none", "withheld_in_countries": [], "followed_by": null, "ext": {"highlightedLabel": {"r": {"ok": {}}, "ttl": -1}}, "require_some_consent": false}}, "card_platform": {"platform": {"device": {"name": "Swift", "version": "12"}, "audience": {"name": "production", "bucket": null}}}}, "lang": "pl", "supplemental_language": null}}
{"object_type": "TweetRaw", "download_datetime": "2021-10-14T13:13:23.914775+02:00", "raw_value": {"created_at": "Thu Oct 14 10:35:59 +0000 2021", "id": 1448598452120719365, "id_str": "1448598452120719365", "full_text": "Nowy zakres kompetencji EMA oraz \u015bcis\u0142a wsp\u00f3\u0142praca z HERA i ECDC, b\u0119d\u0105 podstaw\u0105 do zapewnienia gotowo\u015bci do zarz\u0105dzania przysz\u0142ymi zagro\u017ceniami dla zdrowia publicznego. Artyku\u0142 na temat kszta\u0142towania przepis\u00f3w UE dotycz\u0105cych lek\u00f3w po #COVID19 \u27a1\ufe0fhttps://t.co/dyR1uTvPtq", "truncated": false, "display_text_range": [0, 268], "entities": {"hashtags": [{"text": "COVID19", "indices": [234, 242]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/dyR1uTvPtq", "expanded_url": "https://tiny.pl/99rz1", "display_url": "tiny.pl/99rz1", "indices": [245, 268]}]}, "source": "<a href=\"https://mobile.twitter.com\" rel=\"nofollow\">Twitter Web App</a>", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user_id": 556679074, "user_id_str": "556679074", "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "reply_count": 0, "quote_count": 0, "conversation_id": 1448598452120719365, "conversation_id_str": "1448598452120719365", "favorited": false, "retweeted": false, "possibly_sensitive": false, "possibly_sensitive_editable": true, "card": {"name": "summary", "url": "https://t.co/dyR1uTvPtq", "card_type_url": "http://card-type-url-is-deprecated.invalid", "binding_values": {"vanity_url": {"type": "STRING", "string_value": "thelancet.com", "scribe_key": "vanity_url"}, "domain": {"type": "STRING", "string_value": "www.thelancet.com"}, "title": {"type": "STRING", "string_value": "Shaping EU medicines regulation in the post COVID-19 era"}, "description": {"type": "STRING", "string_value": "The EU Medicines Regulatory Network (EMRN), comprised of the European Medicines Agency (EMA), the medicines regulatory authorities of the Member States and the European Commission (EC), is operating..."}, "thumbnail_image_small": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1444329513756893185/EbiBGvYM?format=png&name=100x100_2", "width": 100, "height": 100, "alt": null}}, "thumbnail_image": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1444329513756893185/EbiBGvYM?format=png&name=144x144_2", "width": 144, "height": 144, "alt": null}}, "thumbnail_image_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1444329513756893185/EbiBGvYM?format=png&name=420x420_2", "width": 300, "height": 300, "alt": null}}, "thumbnail_image_x_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1444329513756893185/EbiBGvYM?format=png&name=2048x2048_2_exp", "width": 300, "height": 300, "alt": null}}, "thumbnail_image_original": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1444329513756893185/EbiBGvYM?format=png&name=orig", "width": 300, "height": 300, "alt": null}}, "card_url": {"type": "STRING", "string_value": "https://t.co/dyR1uTvPtq", "scribe_key": "card_url"}}, "card_platform": {"platform": {"device": {"name": "Swift", "version": "12"}, "audience": {"name": "production", "bucket": null}}}}, "lang": "pl", "supplemental_language": null}}
{"object_type": "TweetRaw", "download_datetime": "2021-10-14T13:13:23.914950+02:00", "raw_value": {"created_at": "Wed Oct 13 13:00:51 +0000 2021", "id": 1448272522416435201, "id_str": "1448272522416435201", "full_text": "Prezydent Warszawy Rafa\u0142 @trzaskowski_ o Marszu Niepodleg\u0142o\u015bci: Epidemia to nie jest czas na organizowanie a\u017c tak wielkich demonstracji https://t.co/2DUaiWljpd https://t.co/MzsfLGrm1W", "truncated": false, "display_text_range": [0, 159], "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "trzaskowski_", "name": "Rafa\u0142 Trzaskowski", "id": 370112160, "id_str": "370112160", "indices": [25, 38]}], "urls": [{"url": "https://t.co/2DUaiWljpd", "expanded_url": "https://www.rp.pl/polityka/art19011181-trzaskowski-marsz-niepodleglosci-epidemia-to-nie-czas-na-tak-wielkie-demonstracje", "display_url": "rp.pl/polityka/art19\u2026", "indices": [136, 159]}], "media": [{"id": 1448272400651538433, "id_str": "1448272400651538433", "indices": [160, 183], "media_url": "http://pbs.twimg.com/media/FBlMEzrWUAEt9od.jpg", "media_url_https": "https://pbs.twimg.com/media/FBlMEzrWUAEt9od.jpg", "url": "https://t.co/MzsfLGrm1W", "display_url": "pic.twitter.com/MzsfLGrm1W", "expanded_url": "https://twitter.com/rzeczpospolita/status/1448272522416435201/photo/1", "type": "photo", "original_info": {"width": 800, "height": 440, "focus_rects": [{"x": 0, "y": 0, "h": 440, "w": 786}, {"x": 40, "y": 0, "h": 440, "w": 440}, {"x": 67, "y": 0, "h": 440, "w": 386}, {"x": 150, "y": 0, "h": 440, "w": 220}, {"x": 0, "y": 0, "h": 440, "w": 800}]}, "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 680, "h": 374, "resize": "fit"}, "large": {"w": 800, "h": 440, "resize": "fit"}, "medium": {"w": 800, "h": 440, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 1448272400651538433, "id_str": "1448272400651538433", "indices": [160, 183], "media_url": "http://pbs.twimg.com/media/FBlMEzrWUAEt9od.jpg", "media_url_https": "https://pbs.twimg.com/media/FBlMEzrWUAEt9od.jpg", "url": "https://t.co/MzsfLGrm1W", "display_url": "pic.twitter.com/MzsfLGrm1W", "expanded_url": "https://twitter.com/rzeczpospolita/status/1448272522416435201/photo/1", "type": "photo", "original_info": {"width": 800, "height": 440, "focus_rects": [{"x": 0, "y": 0, "h": 440, "w": 786}, {"x": 40, "y": 0, "h": 440, "w": 440}, {"x": 67, "y": 0, "h": 440, "w": 386}, {"x": 150, "y": 0, "h": 440, "w": 220}, {"x": 0, "y": 0, "h": 440, "w": 800}]}, "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 680, "h": 374, "resize": "fit"}, "large": {"w": 800, "h": 440, "resize": "fit"}, "medium": {"w": 800, "h": 440, "resize": "fit"}}, "media_key": "3_1448272400651538433", "ext_media_color": {"palette": [{"rgb": {"red": 242, "green": 251, "blue": 254}, "percentage": 54.22}, {"rgb": {"red": 69, "green": 105, "blue": 196}, "percentage": 17.73}, {"rgb": {"red": 184, "green": 141, "blue": 125}, "percentage": 7.08}, {"rgb": {"red": 40, "green": 36, "blue": 33}, "percentage": 6.64}, {"rgb": {"red": 24, "green": 51, "blue": 158}, "percentage": 2.87}]}, "ext_alt_text": "Rafa\u0142 Trzaskowski, fot. Fotorzepa, Jakub Czermi\u0144ski", "ext_media_availability": {"status": "available"}, "ext": {"mediaStats": {"r": "Missing", "ttl": -1}}}]}, "source": "<a href=\"https://about.twitter.com/products/tweetdeck\" rel=\"nofollow\">TweetDeck</a>", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user_id": 194399035, "user_id_str": "194399035", "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 11, "favorite_count": 86, "reply_count": 64, "quote_count": 15, "conversation_id": 1448272522416435201, "conversation_id_str": "1448272522416435201", "favorited": false, "retweeted": false, "possibly_sensitive": false, "possibly_sensitive_editable": true, "lang": "pl", "supplemental_language": null}}
{"object_type": "TweetRaw", "download_datetime": "2021-10-14T13:13:23.915091+02:00", "raw_value": {"created_at": "Thu Oct 14 07:00:01 +0000 2021", "id": 1448544102329499648, "id_str": "1448544102329499648", "full_text": "Dobowy raport - zabezpieczenie szpitalne #covid19 w wojew\u00f3dztwie:\n\u27a1 Og\u00f3lna liczba \u0142\u00f3\u017cek dla pacjent\u00f3w COVID-19 /liczba \u0142\u00f3\u017cek zaj\u0119tych - 266/42\n\u27a1Og\u00f3lna liczba respirator\u00f3w dla pacjent\u00f3w COVID-19/liczba respirator\u00f3w zaj\u0119tych - 45/9\n#lubuskie #koronawirus @MZ_GOV_PL https://t.co/K6mNY8c0nv", "truncated": false, "display_text_range": [0, 263], "entities": {"hashtags": [{"text": "covid19", "indices": [41, 49]}, {"text": "lubuskie", "indices": [230, 239]}, {"text": "koronawirus", "indices": [240, 252]}], "symbols": [], "user_mentions": [{"screen_name": "MZ_GOV_PL", "name": "Ministerstwo Zdrowia", "id": 462886126, "id_str": "462886126", "indices": [253, 263]}], "urls": [], "media": [{"id": 1448268629561249795, "id_str": "1448268629561249795", "indices": [264, 287], "media_url": "http://pbs.twimg.com/media/FBlIpTRXEAMj1Tw.jpg", "media_url_https": "https://pbs.twimg.com/media/FBlIpTRXEAMj1Tw.jpg", "url": "https://t.co/K6mNY8c0nv", "display_url": "pic.twitter.com/K6mNY8c0nv", "expanded_url": "https://twitter.com/LubuskiUW/status/1448544102329499648/photo/1", "type": "photo", "original_info": {"width": 1024, "height": 512, "focus_rects": [{"x": 0, "y": 0, "h": 512, "w": 914}, {"x": 179, "y": 0, "h": 512, "w": 512}, {"x": 211, "y": 0, "h": 512, "w": 449}, {"x": 307, "y": 0, "h": 512, "w": 256}, {"x": 0, "y": 0, "h": 512, "w": 1024}]}, "sizes": {"medium": {"w": 1024, "h": 512, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 1024, "h": 512, "resize": "fit"}, "small": {"w": 680, "h": 340, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 1448268629561249795, "id_str": "1448268629561249795", "indices": [264, 287], "media_url": "http://pbs.twimg.com/media/FBlIpTRXEAMj1Tw.jpg", "media_url_https": "https://pbs.twimg.com/media/FBlIpTRXEAMj1Tw.jpg", "url": "https://t.co/K6mNY8c0nv", "display_url": "pic.twitter.com/K6mNY8c0nv", "expanded_url": "https://twitter.com/LubuskiUW/status/1448544102329499648/photo/1", "type": "photo", "original_info": {"width": 1024, "height": 512, "focus_rects": [{"x": 0, "y": 0, "h": 512, "w": 914}, {"x": 179, "y": 0, "h": 512, "w": 512}, {"x": 211, "y": 0, "h": 512, "w": 449}, {"x": 307, "y": 0, "h": 512, "w": 256}, {"x": 0, "y": 0, "h": 512, "w": 1024}]}, "sizes": {"medium": {"w": 1024, "h": 512, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 1024, "h": 512, "resize": "fit"}, "small": {"w": 680, "h": 340, "resize": "fit"}}, "media_key": "3_1448268629561249795", "ext_alt_text": null, "ext_media_availability": {"status": "available"}, "ext_media_color": {"palette": [{"rgb": {"red": 255, "green": 255, "blue": 255}, "percentage": 97.45}, {"rgb": {"red": 135, "green": 135, "blue": 135}, "percentage": 1.65}, {"rgb": {"red": 241, "green": 164, "blue": 172}, "percentage": 0.28}, {"rgb": {"red": 55, "green": 55, "blue": 55}, "percentage": 0.18}, {"rgb": {"red": 231, "green": 44, "blue": 63}, "percentage": 0.17}]}, "ext": {"mediaStats": {"r": "Missing", "ttl": -1}}}]}, "source": "<a href=\"https://mobile.twitter.com\" rel=\"nofollow\">Twitter Web App</a>", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user_id": 1855139455, "user_id_str": "1855139455", "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 1, "reply_count": 0, "quote_count": 0, "conversation_id": 1448544102329499648, "conversation_id_str": "1448544102329499648", "favorited": false, "retweeted": false, "possibly_sensitive": false, "possibly_sensitive_editable": true, "lang": "pl", "supplemental_language": null}}
{"object_type": "TweetRaw", "download_datetime": "2021-10-14T13:13:23.915168+02:00", "raw_value": {"created_at": "Thu Oct 14 07:35:15 +0000 2021", "id": 1448552968882622467, "id_str": "1448552968882622467", "full_text": "Najwi\u0119cej przeciwcia\u0142 indukuje booster mRNA (Moderna nieznacznie lepiej od Pfizera), bez wzgl\u0119du na to, czy pierwsze dawki szczepionki by\u0142y mRNA czy adenowirusowe (J&amp;J lub AstraZeneca) #COVID19 \ud83d\udc47\ud83e\uddf5", "truncated": false, "display_text_range": [0, 200], "entities": {"hashtags": [{"text": "COVID19", "indices": [189, 197]}], "symbols": [], "user_mentions": [], "urls": []}, "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user_id": 11640112, "user_id_str": "11640112", "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1448341734807654401, "quoted_status_id_str": "1448341734807654401", "quoted_status_permalink": {"url": "https://t.co/i3t82ZUO4Q", "expanded": "https://twitter.com/EricTopol/status/1448341734807654401", "display": "twitter.com/EricTopol/stat\u2026"}, "retweet_count": 0, "favorite_count": 1, "reply_count": 1, "quote_count": 0, "conversation_id": 1448552968882622467, "conversation_id_str": "1448552968882622467", "favorited": false, "retweeted": false, "lang": "pl", "supplemental_language": null}}
{"object_type": "TweetRaw", "download_datetime": "2021-10-14T13:13:23.915303+02:00", "raw_value": {"created_at": "Thu Oct 14 08:41:15 +0000 2021", "id": 1448569577630322690, "id_str": "1448569577630322690", "full_text": "Najwi\u0119cej zaka\u017ce\u0144 i zgon\u00f3w #COVID19  tej jesieni: https://t.co/PKfVBBUXDq https://t.co/lgIZ0vJnVl", "truncated": false, "display_text_range": [0, 73], "entities": {"hashtags": [{"text": "COVID19", "indices": [27, 35]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/PKfVBBUXDq", "expanded_url": "https://lifeinkrakow.pl/w-miescie/3444,jesienny-rekord-zakazen-i-zgonow-wzrost-zachorowan-u-dzieci-ma-zwiazek-ze-szczepieniami", "display_url": "lifeinkrakow.pl/w-miescie/3444\u2026", "indices": [50, 73]}], "media": [{"id": 1448569446868660224, "id_str": "1448569446868660224", "indices": [74, 97], "media_url": "http://pbs.twimg.com/media/FBpaPLEXMAA55jv.jpg", "media_url_https": "https://pbs.twimg.com/media/FBpaPLEXMAA55jv.jpg", "url": "https://t.co/lgIZ0vJnVl", "display_url": "pic.twitter.com/lgIZ0vJnVl", "expanded_url": "https://twitter.com/KrakowLife/status/1448569577630322690/photo/1", "type": "photo", "original_info": {"width": 3536, "height": 2224, "focus_rects": [{"x": 0, "y": 244, "h": 1980, "w": 3536}, {"x": 744, "y": 0, "h": 2224, "w": 2224}, {"x": 881, "y": 0, "h": 2224, "w": 1951}, {"x": 1300, "y": 0, "h": 2224, "w": 1112}, {"x": 0, "y": 0, "h": 2224, "w": 3536}]}, "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 1200, "h": 755, "resize": "fit"}, "large": {"w": 2048, "h": 1288, "resize": "fit"}, "small": {"w": 680, "h": 428, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 1448569446868660224, "id_str": "1448569446868660224", "indices": [74, 97], "media_url": "http://pbs.twimg.com/media/FBpaPLEXMAA55jv.jpg", "media_url_https": "https://pbs.twimg.com/media/FBpaPLEXMAA55jv.jpg", "url": "https://t.co/lgIZ0vJnVl", "display_url": "pic.twitter.com/lgIZ0vJnVl", "expanded_url": "https://twitter.com/KrakowLife/status/1448569577630322690/photo/1", "type": "photo", "original_info": {"width": 3536, "height": 2224, "focus_rects": [{"x": 0, "y": 244, "h": 1980, "w": 3536}, {"x": 744, "y": 0, "h": 2224, "w": 2224}, {"x": 881, "y": 0, "h": 2224, "w": 1951}, {"x": 1300, "y": 0, "h": 2224, "w": 1112}, {"x": 0, "y": 0, "h": 2224, "w": 3536}]}, "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 1200, "h": 755, "resize": "fit"}, "large": {"w": 2048, "h": 1288, "resize": "fit"}, "small": {"w": 680, "h": 428, "resize": "fit"}}, "media_key": "3_1448569446868660224", "ext_media_color": {"palette": [{"rgb": {"red": 53, "green": 45, "blue": 38}, "percentage": 37.7}, {"rgb": {"red": 184, "green": 186, "blue": 183}, "percentage": 26.89}, {"rgb": {"red": 136, "green": 154, "blue": 171}, "percentage": 5.45}, {"rgb": {"red": 125, "green": 122, "blue": 84}, "percentage": 5.22}, {"rgb": {"red": 60, "green": 67, "blue": 100}, "percentage": 2.6}]}, "ext_alt_text": null, "ext_media_availability": {"status": "available"}, "ext": {"mediaStats": {"r": "Missing", "ttl": -1}}}]}, "source": "<a href=\"https://mobile.twitter.com\" rel=\"nofollow\">Twitter Web App</a>", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user_id": 1050006679545368577, "user_id_str": "1050006679545368577", "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "reply_count": 0, "quote_count": 0, "conversation_id": 1448569577630322690, "conversation_id_str": "1448569577630322690", "favorited": false, "retweeted": false, "possibly_sensitive": false, "possibly_sensitive_editable": true, "lang": "pl", "supplemental_language": null}}
{"object_type": "TweetRaw", "download_datetime": "2021-10-14T13:13:23.915377+02:00", "raw_value": {"created_at": "Wed Oct 13 17:51:42 +0000 2021", "id": 1448345716481527810, "id_str": "1448345716481527810", "full_text": "@Piotr_Schramm Bigfarma wuczu\u0142a blusa i wypu\u015bci\u0142a inwermektyne w PL pod nazw\u0105  posela, zarejestrowana do leczenia \u015bwierzbu.Koszt 4 tabl, bagatela 120zl. Przypadek? Nie s\u0105dz\u0119.", "truncated": false, "display_text_range": [15, 174], "entities": {"hashtags": [], "symbols": [], "user_mentions": [{"screen_name": "Piotr_Schramm", "name": "Piotr Schramm", "id": 341135224, "id_str": "341135224", "indices": [0, 14]}], "urls": []}, "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "in_reply_to_status_id": 1448301842874634242, "in_reply_to_status_id_str": "1448301842874634242", "in_reply_to_user_id": 341135224, "in_reply_to_user_id_str": "341135224", "in_reply_to_screen_name": "Piotr_Schramm", "user_id": 1411702451019845634, "user_id_str": "1411702451019845634", "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 2, "reply_count": 0, "quote_count": 1, "conversation_id": 1448301842874634242, "conversation_id_str": "1448301842874634242", "favorited": false, "retweeted": false, "lang": "pl", "supplemental_language": null}}
{"object_type": "TweetRaw", "download_datetime": "2021-10-14T13:13:23.915671+02:00", "raw_value": {"created_at": "Thu Oct 14 10:59:06 +0000 2021", "id": 1448604270719348737, "id_str": "1448604270719348737", "full_text": "RAPORT WOJEW\u00d3DZKI\nSytuacja epidemiologiczna | #covid19\n#MinisterstwoZdrowia\n---\n#\u015aL\u0104SKIE #1minuta i wiesz wi\u0119cej! https://t.co/dbNvbZEE0W", "truncated": false, "display_text_range": [0, 113], "entities": {"hashtags": [{"text": "covid19", "indices": [46, 54]}, {"text": "MinisterstwoZdrowia", "indices": [55, 75]}, {"text": "\u015aL\u0104SKIE", "indices": [80, 88]}, {"text": "1minuta", "indices": [89, 97]}], "symbols": [], "user_mentions": [], "urls": [], "media": [{"id": 1448604259487002624, "id_str": "1448604259487002624", "indices": [114, 137], "media_url": "http://pbs.twimg.com/media/FBp55iLXMAAQfXe.jpg", "media_url_https": "https://pbs.twimg.com/media/FBp55iLXMAAQfXe.jpg", "url": "https://t.co/dbNvbZEE0W", "display_url": "pic.twitter.com/dbNvbZEE0W", "expanded_url": "https://twitter.com/JWieczorekPL/status/1448604270719348737/photo/1", "type": "photo", "original_info": {"width": 1138, "height": 640, "focus_rects": [{"x": 0, "y": 3, "h": 637, "w": 1138}, {"x": 163, "y": 0, "h": 640, "w": 640}, {"x": 203, "y": 0, "h": 640, "w": 561}, {"x": 323, "y": 0, "h": 640, "w": 320}, {"x": 0, "y": 0, "h": 640, "w": 1138}]}, "sizes": {"large": {"w": 1138, "h": 640, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 680, "h": 382, "resize": "fit"}, "medium": {"w": 1138, "h": 640, "resize": "fit"}}}, {"id": 1448604259482836997, "id_str": "1448604259482836997", "indices": [114, 137], "media_url": "http://pbs.twimg.com/media/FBp55iKXoAU_YyU.jpg", "media_url_https": "https://pbs.twimg.com/media/FBp55iKXoAU_YyU.jpg", "url": "https://t.co/dbNvbZEE0W", "display_url": "pic.twitter.com/dbNvbZEE0W", "expanded_url": "https://twitter.com/JWieczorekPL/status/1448604270719348737/photo/1", "type": "photo", "original_info": {"width": 1138, "height": 640, "focus_rects": [{"x": 0, "y": 3, "h": 637, "w": 1138}, {"x": 448, "y": 0, "h": 640, "w": 640}, {"x": 488, "y": 0, "h": 640, "w": 561}, {"x": 608, "y": 0, "h": 640, "w": 320}, {"x": 0, "y": 0, "h": 640, "w": 1138}]}, "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 680, "h": 382, "resize": "fit"}, "large": {"w": 1138, "h": 640, "resize": "fit"}, "medium": {"w": 1138, "h": 640, "resize": "fit"}}}, {"id": 1448604259763859466, "id_str": "1448604259763859466", "indices": [114, 137], "media_url": "http://pbs.twimg.com/media/FBp55jNXsAodshW.jpg", "media_url_https": "https://pbs.twimg.com/media/FBp55jNXsAodshW.jpg", "url": "https://t.co/dbNvbZEE0W", "display_url": "pic.twitter.com/dbNvbZEE0W", "expanded_url": "https://twitter.com/JWieczorekPL/status/1448604270719348737/photo/1", "type": "photo", "original_info": {"width": 1138, "height": 640, "focus_rects": [{"x": 0, "y": 3, "h": 637, "w": 1138}, {"x": 277, "y": 0, "h": 640, "w": 640}, {"x": 317, "y": 0, "h": 640, "w": 561}, {"x": 437, "y": 0, "h": 640, "w": 320}, {"x": 0, "y": 0, "h": 640, "w": 1138}]}, "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 680, "h": 382, "resize": "fit"}, "large": {"w": 1138, "h": 640, "resize": "fit"}, "medium": {"w": 1138, "h": 640, "resize": "fit"}}}, {"id": 1448604260720123904, "id_str": "1448604260720123904", "indices": [114, 137], "media_url": "http://pbs.twimg.com/media/FBp55mxXIAAyO2K.jpg", "media_url_https": "https://pbs.twimg.com/media/FBp55mxXIAAyO2K.jpg", "url": "https://t.co/dbNvbZEE0W", "display_url": "pic.twitter.com/dbNvbZEE0W", "expanded_url": "https://twitter.com/JWieczorekPL/status/1448604270719348737/photo/1", "type": "photo", "original_info": {"width": 1138, "height": 640, "focus_rects": [{"x": 0, "y": 3, "h": 637, "w": 1138}, {"x": 0, "y": 0, "h": 640, "w": 640}, {"x": 0, "y": 0, "h": 640, "w": 561}, {"x": 39, "y": 0, "h": 640, "w": 320}, {"x": 0, "y": 0, "h": 640, "w": 1138}]}, "sizes": {"medium": {"w": 1138, "h": 640, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 1138, "h": 640, "resize": "fit"}, "small": {"w": 680, "h": 382, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 1448604259487002624, "id_str": "1448604259487002624", "indices": [114, 137], "media_url": "http://pbs.twimg.com/media/FBp55iLXMAAQfXe.jpg", "media_url_https": "https://pbs.twimg.com/media/FBp55iLXMAAQfXe.jpg", "url": "https://t.co/dbNvbZEE0W", "display_url": "pic.twitter.com/dbNvbZEE0W", "expanded_url": "https://twitter.com/JWieczorekPL/status/1448604270719348737/photo/1", "type": "photo", "original_info": {"width": 1138, "height": 640, "focus_rects": [{"x": 0, "y": 3, "h": 637, "w": 1138}, {"x": 163, "y": 0, "h": 640, "w": 640}, {"x": 203, "y": 0, "h": 640, "w": 561}, {"x": 323, "y": 0, "h": 640, "w": 320}, {"x": 0, "y": 0, "h": 640, "w": 1138}]}, "sizes": {"large": {"w": 1138, "h": 640, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 680, "h": 382, "resize": "fit"}, "medium": {"w": 1138, "h": 640, "resize": "fit"}}, "media_key": "3_1448604259487002624", "ext_alt_text": null, "ext_media_availability": {"status": "available"}, "ext_media_color": {"palette": [{"rgb": {"red": 57, "green": 78, "blue": 95}, "percentage": 74.38}, {"rgb": {"red": 13, "green": 64, "blue": 129}, "percentage": 17.12}, {"rgb": {"red": 176, "green": 189, "blue": 205}, "percentage": 3.5}, {"rgb": {"red": 59, "green": 68, "blue": 75}, "percentage": 1.57}, {"rgb": {"red": 246, "green": 245, "blue": 5}, "percentage": 0.53}]}, "ext": {"mediaStats": {"r": "Missing", "ttl": -1}}}, {"id": 1448604259482836997, "id_str": "1448604259482836997", "indices": [114, 137], "media_url": "http://pbs.twimg.com/media/FBp55iKXoAU_YyU.jpg", "media_url_https": "https://pbs.twimg.com/media/FBp55iKXoAU_YyU.jpg", "url": "https://t.co/dbNvbZEE0W", "display_url": "pic.twitter.com/dbNvbZEE0W", "expanded_url": "https://twitter.com/JWieczorekPL/status/1448604270719348737/photo/1", "type": "photo", "original_info": {"width": 1138, "height": 640, "focus_rects": [{"x": 0, "y": 3, "h": 637, "w": 1138}, {"x": 448, "y": 0, "h": 640, "w": 640}, {"x": 488, "y": 0, "h": 640, "w": 561}, {"x": 608, "y": 0, "h": 640, "w": 320}, {"x": 0, "y": 0, "h": 640, "w": 1138}]}, "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 680, "h": 382, "resize": "fit"}, "large": {"w": 1138, "h": 640, "resize": "fit"}, "medium": {"w": 1138, "h": 640, "resize": "fit"}}, "media_key": "3_1448604259482836997", "ext_alt_text": null, "ext_media_availability": {"status": "available"}, "ext_media_color": {"palette": [{"rgb": {"red": 242, "green": 242, "blue": 242}, "percentage": 59.84}, {"rgb": {"red": 33, "green": 48, "blue": 107}, "percentage": 13.76}, {"rgb": {"red": 224, "green": 84, "blue": 77}, "percentage": 12.08}, {"rgb": {"red": 244, "green": 162, "blue": 139}, "percentage": 6.03}, {"rgb": {"red": 240, "green": 66, "blue": 37}, "percentage": 1.76}]}, "ext": {"mediaStats": {"r": "Missing", "ttl": -1}}}, {"id": 1448604259763859466, "id_str": "1448604259763859466", "indices": [114, 137], "media_url": "http://pbs.twimg.com/media/FBp55jNXsAodshW.jpg", "media_url_https": "https://pbs.twimg.com/media/FBp55jNXsAodshW.jpg", "url": "https://t.co/dbNvbZEE0W", "display_url": "pic.twitter.com/dbNvbZEE0W", "expanded_url": "https://twitter.com/JWieczorekPL/status/1448604270719348737/photo/1", "type": "photo", "original_info": {"width": 1138, "height": 640, "focus_rects": [{"x": 0, "y": 3, "h": 637, "w": 1138}, {"x": 277, "y": 0, "h": 640, "w": 640}, {"x": 317, "y": 0, "h": 640, "w": 561}, {"x": 437, "y": 0, "h": 640, "w": 320}, {"x": 0, "y": 0, "h": 640, "w": 1138}]}, "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 680, "h": 382, "resize": "fit"}, "large": {"w": 1138, "h": 640, "resize": "fit"}, "medium": {"w": 1138, "h": 640, "resize": "fit"}}, "media_key": "3_1448604259763859466", "ext_alt_text": null, "ext_media_availability": {"status": "available"}, "ext_media_color": {"palette": [{"rgb": {"red": 242, "green": 242, "blue": 242}, "percentage": 69.42}, {"rgb": {"red": 33, "green": 48, "blue": 107}, "percentage": 15.35}, {"rgb": {"red": 223, "green": 29, "blue": 29}, "percentage": 4.94}, {"rgb": {"red": 100, "green": 118, "blue": 158}, "percentage": 4.48}, {"rgb": {"red": 232, "green": 104, "blue": 103}, "percentage": 2.53}]}, "ext": {"mediaStats": {"r": "Missing", "ttl": -1}}}, {"id": 1448604260720123904, "id_str": "1448604260720123904", "indices": [114, 137], "media_url": "http://pbs.twimg.com/media/FBp55mxXIAAyO2K.jpg", "media_url_https": "https://pbs.twimg.com/media/FBp55mxXIAAyO2K.jpg", "url": "https://t.co/dbNvbZEE0W", "display_url": "pic.twitter.com/dbNvbZEE0W", "expanded_url": "https://twitter.com/JWieczorekPL/status/1448604270719348737/photo/1", "type": "photo", "original_info": {"width": 1138, "height": 640, "focus_rects": [{"x": 0, "y": 3, "h": 637, "w": 1138}, {"x": 0, "y": 0, "h": 640, "w": 640}, {"x": 0, "y": 0, "h": 640, "w": 561}, {"x": 39, "y": 0, "h": 640, "w": 320}, {"x": 0, "y": 0, "h": 640, "w": 1138}]}, "sizes": {"medium": {"w": 1138, "h": 640, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 1138, "h": 640, "resize": "fit"}, "small": {"w": 680, "h": 382, "resize": "fit"}}, "media_key": "3_1448604260720123904", "ext_alt_text": null, "ext_media_availability": {"status": "available"}, "ext_media_color": {"palette": [{"rgb": {"red": 227, "green": 227, "blue": 227}, "percentage": 55.96}, {"rgb": {"red": 41, "green": 55, "blue": 107}, "percentage": 19.91}, {"rgb": {"red": 219, "green": 0, "blue": 0}, "percentage": 5.01}, {"rgb": {"red": 221, "green": 160, "blue": 167}, "percentage": 3.14}, {"rgb": {"red": 230, "green": 230, "blue": 1}, "percentage": 1.55}]}, "ext": {"mediaStats": {"r": "Missing", "ttl": -1}}}]}, "source": "<a href=\"https://mobile.twitter.com\" rel=\"nofollow\">Twitter Web App</a>", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user_id": 879646125208285185, "user_id_str": "879646125208285185", "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 1, "favorite_count": 1, "reply_count": 0, "quote_count": 0, "conversation_id": 1448604270719348737, "conversation_id_str": "1448604270719348737", "favorited": false, "retweeted": false, "possibly_sensitive": false, "possibly_sensitive_editable": true, "lang": "pl", "supplemental_language": null}}
{"object_type": "TweetRaw", "download_datetime": "2021-10-14T13:13:23.915749+02:00", "raw_value": {"created_at": "Thu Oct 14 08:14:46 +0000 2021", "id": 1448562915838201856, "id_str": "1448562915838201856", "full_text": "@tvp_info Dlaczego tylko przeciw #COVID19? Mo\u017cna doda\u0107 gryp\u0119, t\u0119\u017cec, dowolnie\u2026", "truncated": false, "display_text_range": [10, 78], "entities": {"hashtags": [{"text": "COVID19", "indices": [33, 41]}], "symbols": [], "user_mentions": [{"screen_name": "tvp_info", "name": "tvp.info \ud83c\uddf5\ud83c\uddf1", "id": 47295451, "id_str": "47295451", "indices": [0, 9]}], "urls": []}, "source": "<a href=\"https://mobile.twitter.com\" rel=\"nofollow\">Twitter Web App</a>", "in_reply_to_status_id": 1448514546910498816, "in_reply_to_status_id_str": "1448514546910498816", "in_reply_to_user_id": 47295451, "in_reply_to_user_id_str": "47295451", "in_reply_to_screen_name": "tvp_info", "user_id": 1027346533258285056, "user_id_str": "1027346533258285056", "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "reply_count": 0, "quote_count": 0, "conversation_id": 1448514546910498816, "conversation_id_str": "1448514546910498816", "favorited": false, "retweeted": false, "lang": "pl", "supplemental_language": null}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:23.920149+02:00", "raw_value": {"id": 1855139455, "id_str": "1855139455", "name": "LUW  \ud83c\uddf5\ud83c\uddf1 \ud83d\udcaf", "screen_name": "LubuskiUW", "location": "Gorz\u00f3w Wielkopolski, Polska", "description": "Lubuski Urz\u0105d Wojew\u00f3dzki w Gorzowie Wielkopolskim\nul. Jagiello\u0144czyka 8,\n66-400 Gorz\u00f3w Wielkopolski\n tel. +48 95 7 851 851", "url": "https://t.co/Fcb4zvqLy9", "entities": {"url": {"urls": [{"url": "https://t.co/Fcb4zvqLy9", "expanded_url": "https://www.gov.pl/web/uw-lubuski", "display_url": "gov.pl/web/uw-lubuski", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 1322, "fast_followers_count": 0, "normal_followers_count": 1322, "friends_count": 291, "listed_count": 7, "created_at": "Wed Sep 11 18:33:36 +0000 2013", "favourites_count": 1175, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 4826, "media_count": 1604, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme2/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme2/bg.gif", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/378800000444006002/8659558fdfa1e6bffed1b8464000e59a_normal.jpeg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000444006002/8659558fdfa1e6bffed1b8464000e59a_normal.jpeg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1855139455/1622531099", "profile_image_extensions_alt_text": null, "profile_image_extensions_media_availability": null, "profile_image_extensions_media_color": {"palette": [{"rgb": {"red": 255, "green": 255, "blue": 255}, "percentage": 98.15}, {"rgb": {"red": 228, "green": 15, "blue": 38}, "percentage": 0.67}, {"rgb": {"red": 126, "green": 127, "blue": 129}, "percentage": 0.43}, {"rgb": {"red": 241, "green": 165, "blue": 168}, "percentage": 0.4}, {"rgb": {"red": 232, "green": 90, "blue": 102}, "percentage": 0.28}]}, "profile_image_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_banner_extensions_media_color": {"palette": [{"rgb": {"red": 240, "green": 244, "blue": 247}, "percentage": 46.62}, {"rgb": {"red": 40, "green": 115, "blue": 183}, "percentage": 24.33}, {"rgb": {"red": 221, "green": 170, "blue": 167}, "percentage": 8.23}, {"rgb": {"red": 225, "green": 4, "blue": 56}, "percentage": 5.34}, {"rgb": {"red": 78, "green": 53, "blue": 55}, "percentage": 2.51}]}, "profile_banner_extensions_alt_text": null, "profile_banner_extensions_media_availability": null, "profile_banner_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_link_color": "4A913C", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "has_extended_profile": false, "default_profile": false, "default_profile_image": false, "pinned_tweet_ids": [], "pinned_tweet_ids_str": [], "has_custom_timelines": true, "can_dm": null, "following": null, "follow_request_sent": null, "notifications": null, "muting": null, "blocking": null, "blocked_by": null, "want_retweets": null, "advertiser_account_type": "promotable_user", "advertiser_account_service_levels": ["smb"], "profile_interstitial_type": "", "business_profile_state": "none", "translator_type": "none", "withheld_in_countries": [], "followed_by": null, "ext": {"highlightedLabel": {"r": {"ok": {}}, "ttl": -1}}, "require_some_consent": false}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:23.920368+02:00", "raw_value": {"id": 2383647524, "id_str": "2383647524", "name": "infodent24.pl", "screen_name": "infodent24_pl", "location": "", "description": "", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 406, "fast_followers_count": 0, "normal_followers_count": 406, "friends_count": 90, "listed_count": 3, "created_at": "Tue Mar 11 12:31:08 +0000 2014", "favourites_count": 3, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 15194, "media_count": 9043, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "FFFFFF", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/449493331492368384/_F4MIeeT_normal.png", "profile_image_url_https": "https://pbs.twimg.com/profile_images/449493331492368384/_F4MIeeT_normal.png", "profile_banner_url": "https://pbs.twimg.com/profile_banners/2383647524/1528737216", "profile_image_extensions_alt_text": null, "profile_image_extensions_media_availability": null, "profile_image_extensions_media_color": {"palette": [{"rgb": {"red": 255, "green": 255, "blue": 255}, "percentage": 69.38}, {"rgb": {"red": 121, "green": 133, "blue": 141}, "percentage": 21.47}, {"rgb": {"red": 0, "green": 148, "blue": 192}, "percentage": 9.12}]}, "profile_image_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_banner_extensions_alt_text": null, "profile_banner_extensions_media_availability": null, "profile_banner_extensions_media_color": {"palette": [{"rgb": {"red": 0, "green": 30, "blue": 52}, "percentage": 39.92}, {"rgb": {"red": 207, "green": 218, "blue": 226}, "percentage": 34.54}, {"rgb": {"red": 89, "green": 119, "blue": 130}, "percentage": 14.28}, {"rgb": {"red": 0, "green": 54, "blue": 114}, "percentage": 2.42}, {"rgb": {"red": 157, "green": 230, "blue": 252}, "percentage": 1.18}]}, "profile_banner_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_link_color": "4999C9", "profile_sidebar_border_color": "FFFFFF", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": false, "default_profile_image": false, "pinned_tweet_ids": [], "pinned_tweet_ids_str": [], "has_custom_timelines": false, "can_dm": null, "following": null, "follow_request_sent": null, "notifications": null, "muting": null, "blocking": null, "blocked_by": null, "want_retweets": null, "advertiser_account_type": "promotable_user", "advertiser_account_service_levels": ["analytics"], "profile_interstitial_type": "", "business_profile_state": "none", "translator_type": "none", "withheld_in_countries": [], "followed_by": null, "ext": {"highlightedLabel": {"r": {"ok": {}}, "ttl": -1}}, "require_some_consent": false}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:23.920498+02:00", "raw_value": {"id": 1303245998328811522, "id_str": "1303245998328811522", "name": "Bankrut Gie\u0142dowy \ud83c\uddfa\ud83c\uddf8 \ud83c\uddf5\ud83c\uddf1 \ud83c\uddea\ud83c\uddfa", "screen_name": "OpaInvest", "location": "Warszawa, Polska", "description": "", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 27, "fast_followers_count": 0, "normal_followers_count": 27, "friends_count": 137, "listed_count": 2, "created_at": "Tue Sep 08 08:17:26 +0000 2020", "favourites_count": 207, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 442, "media_count": 26, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "F5F8FA", "profile_background_image_url": null, "profile_background_image_url_https": null, "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1447888023752957956/rwPWKbWK_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1447888023752957956/rwPWKbWK_normal.jpg", "profile_image_extensions_alt_text": null, "profile_image_extensions_media_color": {"palette": [{"rgb": {"red": 210, "green": 149, "blue": 104}, "percentage": 34.47}, {"rgb": {"red": 83, "green": 114, "blue": 65}, "percentage": 18.32}, {"rgb": {"red": 235, "green": 213, "blue": 177}, "percentage": 10.87}, {"rgb": {"red": 142, "green": 73, "blue": 40}, "percentage": 10.14}, {"rgb": {"red": 211, "green": 128, "blue": 70}, "percentage": 6.09}]}, "profile_image_extensions_media_availability": null, "profile_image_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": true, "default_profile_image": false, "pinned_tweet_ids": [1425705142641467395], "pinned_tweet_ids_str": ["1425705142641467395"], "has_custom_timelines": false, "can_dm": null, "following": null, "follow_request_sent": null, "notifications": null, "muting": null, "blocking": null, "blocked_by": null, "want_retweets": null, "advertiser_account_type": "none", "advertiser_account_service_levels": [], "profile_interstitial_type": "", "business_profile_state": "none", "translator_type": "none", "withheld_in_countries": [], "followed_by": null, "ext": {"highlightedLabel": {"r": {"ok": {}}, "ttl": -1}}, "require_some_consent": false}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:23.920629+02:00", "raw_value": {"id": 746711713916006400, "id_str": "746711713916006400", "name": "Digital Me", "screen_name": "Cyfrowy_Ja", "location": "Polska B", "description": "Oszcz\u0119dzanie, samoobrona finansowa, inwestycje, w tym TFI, demografia, gospodarka. Zapraszam na blog.", "url": "https://t.co/IJeQyyfjg8", "entities": {"url": {"urls": [{"url": "https://t.co/IJeQyyfjg8", "expanded_url": "https://stopazwrotu.blogspot.com/", "display_url": "stopazwrotu.blogspot.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 962, "fast_followers_count": 0, "normal_followers_count": 962, "friends_count": 165, "listed_count": 10, "created_at": "Sat Jun 25 14:28:40 +0000 2016", "favourites_count": 43860, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 28760, "media_count": 1546, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "F5F8FA", "profile_background_image_url": null, "profile_background_image_url_https": null, "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/848523063692054529/JqC7M59j_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/848523063692054529/JqC7M59j_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/746711713916006400/1489688226", "profile_image_extensions_alt_text": null, "profile_image_extensions_media_color": {"palette": [{"rgb": {"red": 247, "green": 246, "blue": 244}, "percentage": 57.32}, {"rgb": {"red": 162, "green": 94, "blue": 75}, "percentage": 32.89}, {"rgb": {"red": 146, "green": 122, "blue": 118}, "percentage": 3.67}, {"rgb": {"red": 69, "green": 32, "blue": 23}, "percentage": 2.54}, {"rgb": {"red": 145, "green": 74, "blue": 32}, "percentage": 1.2}]}, "profile_image_extensions_media_availability": null, "profile_image_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_banner_extensions_alt_text": null, "profile_banner_extensions_media_availability": null, "profile_banner_extensions_media_color": {"palette": [{"rgb": {"red": 0, "green": 0, "blue": 0}, "percentage": 67.62}, {"rgb": {"red": 15, "green": 29, "blue": 99}, "percentage": 15.77}, {"rgb": {"red": 26, "green": 55, "blue": 166}, "percentage": 7.05}, {"rgb": {"red": 12, "green": 19, "blue": 55}, "percentage": 3.0}, {"rgb": {"red": 8, "green": 13, "blue": 58}, "percentage": 1.42}]}, "profile_banner_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": true, "default_profile_image": false, "pinned_tweet_ids": [1198310453996392449], "pinned_tweet_ids_str": ["1198310453996392449"], "has_custom_timelines": true, "can_dm": null, "following": null, "follow_request_sent": null, "notifications": null, "muting": null, "blocking": null, "blocked_by": null, "want_retweets": null, "advertiser_account_type": "promotable_user", "advertiser_account_service_levels": ["analytics"], "profile_interstitial_type": "", "business_profile_state": "none", "translator_type": "none", "withheld_in_countries": [], "followed_by": null, "ext": {"highlightedLabel": {"r": {"ok": {}}, "ttl": -1}}, "require_some_consent": false}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:23.920755+02:00", "raw_value": {"id": 556679074, "id_str": "556679074", "name": "URPL", "screen_name": "URPLWMiPB", "location": "Poland", "description": "The Office for Registration of Medicinal Products, Medical Devices and Biocidal Products | Urz\u0105d Rejestracji Prod. Leczniczych, Wyrob\u00f3w Med. i Prod. Biob\u00f3jczych", "url": "https://t.co/yOlqIh8cmt", "entities": {"url": {"urls": [{"url": "https://t.co/yOlqIh8cmt", "expanded_url": "http://www.urpl.gov.pl", "display_url": "urpl.gov.pl", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 1955, "fast_followers_count": 0, "normal_followers_count": 1955, "friends_count": 370, "listed_count": 20, "created_at": "Wed Apr 18 08:30:51 +0000 2012", "favourites_count": 614, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": true, "statuses_count": 5904, "media_count": 1277, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "C3CED4", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/2150354867/image_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/2150354867/image_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/556679074/1621243813", "profile_image_extensions_alt_text": null, "profile_image_extensions_media_color": {"palette": [{"rgb": {"red": 39, "green": 172, "blue": 228}, "percentage": 55.24}, {"rgb": {"red": 254, "green": 254, "blue": 254}, "percentage": 39.42}, {"rgb": {"red": 122, "green": 127, "blue": 128}, "percentage": 4.32}, {"rgb": {"red": 41, "green": 37, "blue": 41}, "percentage": 0.56}, {"rgb": {"red": 238, "green": 241, "blue": 233}, "percentage": 0.34}]}, "profile_image_extensions_media_availability": null, "profile_image_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_banner_extensions_media_color": {"palette": [{"rgb": {"red": 240, "green": 244, "blue": 247}, "percentage": 46.62}, {"rgb": {"red": 40, "green": 115, "blue": 183}, "percentage": 24.33}, {"rgb": {"red": 221, "green": 170, "blue": 167}, "percentage": 8.23}, {"rgb": {"red": 225, "green": 4, "blue": 56}, "percentage": 5.34}, {"rgb": {"red": 78, "green": 53, "blue": 55}, "percentage": 2.51}]}, "profile_banner_extensions_alt_text": null, "profile_banner_extensions_media_availability": null, "profile_banner_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_link_color": "009999", "profile_sidebar_border_color": "FFFFFF", "profile_sidebar_fill_color": "EFEFEF", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "pinned_tweet_ids": [], "pinned_tweet_ids_str": [], "has_custom_timelines": false, "can_dm": null, "following": null, "follow_request_sent": null, "notifications": null, "muting": null, "blocking": null, "blocked_by": null, "want_retweets": null, "advertiser_account_type": "promotable_user", "advertiser_account_service_levels": ["analytics"], "profile_interstitial_type": "", "business_profile_state": "none", "translator_type": "none", "withheld_in_countries": [], "followed_by": null, "ext": {"highlightedLabel": {"r": {"ok": {}}, "ttl": -1}}, "require_some_consent": false}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:23.920871+02:00", "raw_value": {"id": 1050006679545368577, "id_str": "1050006679545368577", "name": "Life in Krakow", "screen_name": "KrakowLife", "location": "", "description": "", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 486, "fast_followers_count": 0, "normal_followers_count": 486, "friends_count": 62, "listed_count": 3, "created_at": "Wed Oct 10 12:54:35 +0000 2018", "favourites_count": 404, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 4292, "media_count": 2940, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "F5F8FA", "profile_background_image_url": null, "profile_background_image_url_https": null, "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1067098307871281152/zO1LNLOc_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1067098307871281152/zO1LNLOc_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1050006679545368577/1543250992", "profile_image_extensions_alt_text": null, "profile_image_extensions_media_availability": null, "profile_image_extensions_media_color": {"palette": [{"rgb": {"red": 42, "green": 151, "blue": 128}, "percentage": 75.32}, {"rgb": {"red": 255, "green": 255, "blue": 255}, "percentage": 17.18}, {"rgb": {"red": 85, "green": 205, "blue": 178}, "percentage": 4.72}, {"rgb": {"red": 1, "green": 98, "blue": 79}, "percentage": 2.34}, {"rgb": {"red": 163, "green": 210, "blue": 200}, "percentage": 0.42}]}, "profile_image_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_banner_extensions_media_color": {"palette": [{"rgb": {"red": 17, "green": 33, "blue": 35}, "percentage": 69.1}, {"rgb": {"red": 50, "green": 109, "blue": 78}, "percentage": 15.95}, {"rgb": {"red": 155, "green": 135, "blue": 106}, "percentage": 11.08}, {"rgb": {"red": 165, "green": 171, "blue": 174}, "percentage": 1.4}, {"rgb": {"red": 36, "green": 52, "blue": 73}, "percentage": 0.93}]}, "profile_banner_extensions_alt_text": null, "profile_banner_extensions_media_availability": null, "profile_banner_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": true, "default_profile_image": false, "pinned_tweet_ids": [], "pinned_tweet_ids_str": [], "has_custom_timelines": false, "can_dm": null, "following": null, "follow_request_sent": null, "notifications": null, "muting": null, "blocking": null, "blocked_by": null, "want_retweets": null, "advertiser_account_type": "promotable_user", "advertiser_account_service_levels": ["smb"], "profile_interstitial_type": "", "business_profile_state": "none", "translator_type": "none", "withheld_in_countries": [], "followed_by": null, "ext": {"highlightedLabel": {"r": {"ok": {}}, "ttl": -1}}, "require_some_consent": false}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:23.920953+02:00", "raw_value": {"id": 1411702451019845634, "id_str": "1411702451019845634", "name": "Ann Bu", "screen_name": "AnnBu14366909", "location": "", "description": "", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 0, "fast_followers_count": 0, "normal_followers_count": 0, "friends_count": 24, "listed_count": 0, "created_at": "Sun Jul 04 15:08:01 +0000 2021", "favourites_count": 295, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 106, "media_count": 0, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "F5F8FA", "profile_background_image_url": null, "profile_background_image_url_https": null, "profile_background_tile": false, "profile_image_url": "http://abs.twimg.com/sticky/default_profile_images/default_profile_normal.png", "profile_image_url_https": "https://abs.twimg.com/sticky/default_profile_images/default_profile_normal.png", "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": true, "default_profile_image": true, "pinned_tweet_ids": [], "pinned_tweet_ids_str": [], "has_custom_timelines": false, "can_dm": null, "following": null, "follow_request_sent": null, "notifications": null, "muting": null, "blocking": null, "blocked_by": null, "want_retweets": null, "advertiser_account_type": "none", "advertiser_account_service_levels": [], "profile_interstitial_type": "", "business_profile_state": "none", "translator_type": "none", "withheld_in_countries": [], "followed_by": null, "ext": {"highlightedLabel": {"r": {"ok": {}}, "ttl": -1}}, "require_some_consent": false}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:23.921075+02:00", "raw_value": {"id": 86626845, "id_str": "86626845", "name": "Eric Topol", "screen_name": "EricTopol", "location": "La Jolla, CA", "description": "physician-scientist, author, editor  \nhttps://t.co/AWqrOxpoZP", "url": "https://t.co/fYzaAmKQ2A", "entities": {"url": {"urls": [{"url": "https://t.co/fYzaAmKQ2A", "expanded_url": "http://www.scripps.edu/translational", "display_url": "scripps.edu/translational", "indices": [0, 23]}]}, "description": {"urls": [{"url": "https://t.co/AWqrOxpoZP", "expanded_url": "http://drerictopol.com", "display_url": "drerictopol.com", "indices": [38, 61]}]}}, "protected": false, "followers_count": 531824, "fast_followers_count": 0, "normal_followers_count": 531824, "friends_count": 530, "listed_count": 10071, "created_at": "Sun Nov 01 00:02:55 +0000 2009", "favourites_count": 39337, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": true, "statuses_count": 38666, "media_count": 23712, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "00CCCC", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1115688713424519169/kHgDk5TV_normal.png", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1115688713424519169/kHgDk5TV_normal.png", "profile_banner_url": "https://pbs.twimg.com/profile_banners/86626845/1580865445", "profile_image_extensions_alt_text": null, "profile_image_extensions_media_availability": null, "profile_image_extensions_media_color": {"palette": [{"rgb": {"red": 249, "green": 249, "blue": 250}, "percentage": 57.21}, {"rgb": {"red": 92, "green": 192, "blue": 202}, "percentage": 12.6}, {"rgb": {"red": 212, "green": 146, "blue": 117}, "percentage": 10.37}, {"rgb": {"red": 78, "green": 51, "blue": 39}, "percentage": 8.12}, {"rgb": {"red": 21, "green": 60, "blue": 62}, "percentage": 2.76}]}, "profile_image_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_banner_extensions_media_color": {"palette": [{"rgb": {"red": 189, "green": 173, "blue": 161}, "percentage": 32.41}, {"rgb": {"red": 44, "green": 57, "blue": 67}, "percentage": 14.52}, {"rgb": {"red": 81, "green": 68, "blue": 57}, "percentage": 6.96}, {"rgb": {"red": 154, "green": 51, "blue": 57}, "percentage": 5.6}, {"rgb": {"red": 190, "green": 152, "blue": 49}, "percentage": 5.58}]}, "profile_banner_extensions_alt_text": null, "profile_banner_extensions_media_availability": null, "profile_banner_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_link_color": "3366FF", "profile_sidebar_border_color": "FFFFFF", "profile_sidebar_fill_color": "74A3BF", "profile_text_color": "295B7C", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": false, "default_profile_image": false, "pinned_tweet_ids": [1332771238771630080], "pinned_tweet_ids_str": ["1332771238771630080"], "has_custom_timelines": true, "can_dm": null, "following": null, "follow_request_sent": null, "notifications": null, "muting": null, "blocking": null, "blocked_by": null, "want_retweets": null, "advertiser_account_type": "promotable_user", "advertiser_account_service_levels": ["smb"], "profile_interstitial_type": "", "business_profile_state": "none", "translator_type": "none", "withheld_in_countries": [], "followed_by": null, "ext": {"highlightedLabel": {"r": {"ok": {}}, "ttl": -1}}, "require_some_consent": false}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:23.921193+02:00", "raw_value": {"id": 879646125208285185, "id_str": "879646125208285185", "name": "Wojewoda \u015al\u0105ski \ud83c\uddf5\ud83c\uddf1 #\u015aL\u0104SKIE", "screen_name": "JWieczorekPL", "location": "Katowice, Polska", "description": "Konto TT wojewody \u015bl\u0105skiego Jaros\u0142awa Wieczorka", "url": "https://t.co/4CShpk0Xtb", "entities": {"url": {"urls": [{"url": "https://t.co/4CShpk0Xtb", "expanded_url": "http://www.katowice.uw.gov.pl", "display_url": "katowice.uw.gov.pl", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 784, "fast_followers_count": 0, "normal_followers_count": 784, "friends_count": 55, "listed_count": 3, "created_at": "Tue Jun 27 10:22:34 +0000 2017", "favourites_count": 1879, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 2985, "media_count": 1027, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "F5F8FA", "profile_background_image_url": null, "profile_background_image_url_https": null, "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/879649004736458752/sUtla2iQ_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/879649004736458752/sUtla2iQ_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/879646125208285185/1498559617", "profile_image_extensions_media_color": {"palette": [{"rgb": {"red": 217, "green": 221, "blue": 230}, "percentage": 51.2}, {"rgb": {"red": 41, "green": 45, "blue": 57}, "percentage": 18.59}, {"rgb": {"red": 43, "green": 81, "blue": 130}, "percentage": 13.97}, {"rgb": {"red": 216, "green": 157, "blue": 143}, "percentage": 1.69}, {"rgb": {"red": 254, "green": 0, "blue": 65}, "percentage": 1.15}]}, "profile_image_extensions_alt_text": null, "profile_image_extensions_media_availability": null, "profile_image_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_banner_extensions_alt_text": null, "profile_banner_extensions_media_availability": null, "profile_banner_extensions_media_color": {"palette": [{"rgb": {"red": 3, "green": 81, "blue": 194}, "percentage": 68.13}, {"rgb": {"red": 44, "green": 120, "blue": 200}, "percentage": 10.05}, {"rgb": {"red": 4, "green": 13, "blue": 76}, "percentage": 4.4}, {"rgb": {"red": 2, "green": 58, "blue": 181}, "percentage": 4.09}, {"rgb": {"red": 217, "green": 222, "blue": 230}, "percentage": 3.11}]}, "profile_banner_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": true, "default_profile_image": false, "pinned_tweet_ids": [], "pinned_tweet_ids_str": [], "has_custom_timelines": false, "can_dm": null, "following": null, "follow_request_sent": null, "notifications": null, "muting": null, "blocking": null, "blocked_by": null, "want_retweets": null, "advertiser_account_type": "none", "advertiser_account_service_levels": [], "profile_interstitial_type": "", "business_profile_state": "none", "translator_type": "none", "withheld_in_countries": [], "followed_by": null, "ext": {"highlightedLabel": {"r": {"ok": {}}, "ttl": -1}}, "require_some_consent": false}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:23.921313+02:00", "raw_value": {"id": 1378376877413437440, "id_str": "1378376877413437440", "name": "Bi przeciwko \u015bwiatu: Niewola babilo\u0144ska", "screen_name": "realBPSNB", "location": "Poland", "description": "Naukowiec, aposto\u0142 zdrowego rozs\u0105dku, dziennikarka prze\u015bmiewcza, superbi. Krocz\u0119 mi\u0119dzy prawic\u0105 i lewic\u0105, cz\u0119sto nie wierz\u0105c w to co widz\u0119. PL/EN", "url": "https://t.co/uaDyGnIt5j", "entities": {"url": {"urls": [{"url": "https://t.co/uaDyGnIt5j", "expanded_url": "https://gab.com/bpsnb", "display_url": "gab.com/bpsnb", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 589, "fast_followers_count": 0, "normal_followers_count": 589, "friends_count": 396, "listed_count": 0, "created_at": "Sat Apr 03 16:00:37 +0000 2021", "favourites_count": 142, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 6206, "media_count": 1197, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "F5F8FA", "profile_background_image_url": null, "profile_background_image_url_https": null, "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1378377201750581249/Id523JXm_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1378377201750581249/Id523JXm_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1378376877413437440/1617466492", "profile_image_extensions_alt_text": null, "profile_image_extensions_media_color": {"palette": [{"rgb": {"red": 8, "green": 0, "blue": 241}, "percentage": 43.74}, {"rgb": {"red": 220, "green": 23, "blue": 188}, "percentage": 43.43}, {"rgb": {"red": 252, "green": 252, "blue": 250}, "percentage": 9.44}, {"rgb": {"red": 241, "green": 190, "blue": 233}, "percentage": 0.91}, {"rgb": {"red": 73, "green": 67, "blue": 222}, "percentage": 0.45}]}, "profile_image_extensions_media_availability": null, "profile_image_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_banner_extensions_alt_text": null, "profile_banner_extensions_media_availability": null, "profile_banner_extensions_media_color": {"palette": [{"rgb": {"red": 47, "green": 54, "blue": 27}, "percentage": 46.24}, {"rgb": {"red": 194, "green": 198, "blue": 209}, "percentage": 39.68}, {"rgb": {"red": 75, "green": 82, "blue": 30}, "percentage": 7.14}, {"rgb": {"red": 108, "green": 111, "blue": 95}, "percentage": 5.96}, {"rgb": {"red": 104, "green": 105, "blue": 107}, "percentage": 2.11}]}, "profile_banner_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": true, "default_profile_image": false, "pinned_tweet_ids": [1448409537313136642], "pinned_tweet_ids_str": ["1448409537313136642"], "has_custom_timelines": true, "can_dm": null, "following": null, "follow_request_sent": null, "notifications": null, "muting": null, "blocking": null, "blocked_by": null, "want_retweets": null, "advertiser_account_type": "none", "advertiser_account_service_levels": [], "profile_interstitial_type": "", "business_profile_state": "none", "translator_type": "none", "withheld_in_countries": [], "followed_by": null, "ext": {"highlightedLabel": {"r": {"ok": {}}, "ttl": -1}}, "require_some_consent": false}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:23.921411+02:00", "raw_value": {"id": 911978702107480064, "id_str": "911978702107480064", "name": "Chance Boudreaux", "screen_name": "ManiekBury85", "location": "", "description": "Polecam serwisy: https://t.co/BrPcdAHcas , https://t.co/ZUjHcr3fhP i ksi\u0105\u017ck\u0119 Historia Antykultury 1.0 Krzysztofa Karonia. P Karo\u0144 w czwartki w tv wRealu24", "url": null, "entities": {"description": {"urls": [{"url": "https://t.co/BrPcdAHcas", "expanded_url": "http://historiasztuki.com.pl", "display_url": "historiasztuki.com.pl", "indices": [17, 40]}, {"url": "https://t.co/ZUjHcr3fhP", "expanded_url": "http://youtube.com/HISTORIASZTUKI2011", "display_url": "youtube.com/HISTORIASZTUKI\u2026", "indices": [43, 66]}]}}, "protected": false, "followers_count": 983, "fast_followers_count": 0, "normal_followers_count": 983, "friends_count": 2113, "listed_count": 2, "created_at": "Sun Sep 24 15:40:41 +0000 2017", "favourites_count": 6853, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 23706, "media_count": 1003, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "F5F8FA", "profile_background_image_url": null, "profile_background_image_url_https": null, "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1287148053061931008/CDwIXyso_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1287148053061931008/CDwIXyso_normal.jpg", "profile_image_extensions_media_color": {"palette": [{"rgb": {"red": 51, "green": 51, "blue": 51}, "percentage": 61.19}, {"rgb": {"red": 230, "green": 230, "blue": 230}, "percentage": 32.26}]}, "profile_image_extensions_alt_text": null, "profile_image_extensions_media_availability": null, "profile_image_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": true, "default_profile_image": false, "pinned_tweet_ids": [1018819661339783168], "pinned_tweet_ids_str": ["1018819661339783168"], "has_custom_timelines": true, "can_dm": null, "following": null, "follow_request_sent": null, "notifications": null, "muting": null, "blocking": null, "blocked_by": null, "want_retweets": null, "advertiser_account_type": "promotable_user", "advertiser_account_service_levels": ["analytics"], "profile_interstitial_type": "", "business_profile_state": "none", "translator_type": "none", "withheld_in_countries": [], "followed_by": null, "ext": {"highlightedLabel": {"r": {"ok": {}}, "ttl": -1}}, "require_some_consent": false}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:23.921534+02:00", "raw_value": {"id": 210005449, "id_str": "210005449", "name": "Wojciech Cegielski (Polskie Radio / \u015awiat) \ud83c\udfa7\ud83c\udfa5", "screen_name": "wojciechce", "location": "Warsaw, Poland", "description": "Polish Radio foreign news correspondent. RT,FAV NOT endorsement.\nhttps://t.co/7BNDBA79zV,\u2026\n\ud83d\udcf2 PODCAST \"\u015aWIAT/THE WORLD\" \u2b07\ufe0f", "url": "https://t.co/0poDAZS0XL", "entities": {"url": {"urls": [{"url": "https://t.co/0poDAZS0XL", "expanded_url": "https://www.youtube.com/c/\u015awiatTheWorld", "display_url": "youtube.com/c/\u015awiatTheWorld", "indices": [0, 23]}]}, "description": {"urls": [{"url": "https://t.co/7BNDBA79zV", "expanded_url": "http://polskieradio.pl/Ludzie/320801", "display_url": "polskieradio.pl/Ludzie/320801", "indices": [65, 88]}]}}, "protected": false, "followers_count": 3355, "fast_followers_count": 0, "normal_followers_count": 3355, "friends_count": 370, "listed_count": 65, "created_at": "Sat Oct 30 10:45:14 +0000 2010", "favourites_count": 2376, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 20347, "media_count": 3227, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "131516", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1022577232483639306/KbB6c-d__normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1022577232483639306/KbB6c-d__normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/210005449/1623197491", "profile_image_extensions_media_color": {"palette": [{"rgb": {"red": 234, "green": 233, "blue": 229}, "percentage": 42.97}, {"rgb": {"red": 69, "green": 65, "blue": 62}, "percentage": 18.16}, {"rgb": {"red": 134, "green": 75, "blue": 57}, "percentage": 9.29}, {"rgb": {"red": 80, "green": 80, "blue": 42}, "percentage": 6.02}, {"rgb": {"red": 68, "green": 69, "blue": 90}, "percentage": 5.18}]}, "profile_image_extensions_alt_text": null, "profile_image_extensions_media_availability": null, "profile_image_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_banner_extensions_media_color": {"palette": [{"rgb": {"red": 227, "green": 209, "blue": 73}, "percentage": 69.69}, {"rgb": {"red": 107, "green": 109, "blue": 200}, "percentage": 6.1}, {"rgb": {"red": 173, "green": 173, "blue": 169}, "percentage": 4.83}, {"rgb": {"red": 193, "green": 143, "blue": 102}, "percentage": 3.85}, {"rgb": {"red": 181, "green": 182, "blue": 123}, "percentage": 3.69}]}, "profile_banner_extensions_alt_text": null, "profile_banner_extensions_media_availability": null, "profile_banner_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_link_color": "1B95E0", "profile_sidebar_border_color": "FFFFFF", "profile_sidebar_fill_color": "EFEFEF", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": false, "default_profile_image": false, "pinned_tweet_ids": [1446505668555546634], "pinned_tweet_ids_str": ["1446505668555546634"], "has_custom_timelines": false, "can_dm": null, "following": null, "follow_request_sent": null, "notifications": null, "muting": null, "blocking": null, "blocked_by": null, "want_retweets": null, "advertiser_account_type": "promotable_user", "advertiser_account_service_levels": ["analytics"], "profile_interstitial_type": "", "business_profile_state": "none", "translator_type": "none", "withheld_in_countries": [], "followed_by": null, "ext": {"highlightedLabel": {"r": {"ok": {}}, "ttl": -1}}, "require_some_consent": false}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:23.921649+02:00", "raw_value": {"id": 462886126, "id_str": "462886126", "name": "Ministerstwo Zdrowia", "screen_name": "MZ_GOV_PL", "location": "Polska", "description": "Oficjalny profil Ministerstwa Zdrowia", "url": "http://t.co/fYgPUTSfDq", "entities": {"url": {"urls": [{"url": "http://t.co/fYgPUTSfDq", "expanded_url": "http://www.mz.gov.pl", "display_url": "mz.gov.pl", "indices": [0, 22]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 439887, "fast_followers_count": 0, "normal_followers_count": 439887, "friends_count": 1175, "listed_count": 640, "created_at": "Fri Jan 13 13:40:29 +0000 2012", "favourites_count": 3153, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": true, "statuses_count": 14653, "media_count": 5389, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "ABB8C2", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme18/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme18/bg.gif", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1069885833656844290/Inl2pghx_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1069885833656844290/Inl2pghx_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/462886126/1632485104", "profile_image_extensions_alt_text": null, "profile_image_extensions_media_availability": null, "profile_image_extensions_media_color": {"palette": [{"rgb": {"red": 255, "green": 255, "blue": 255}, "percentage": 94.04}, {"rgb": {"red": 46, "green": 165, "blue": 215}, "percentage": 4.24}, {"rgb": {"red": 122, "green": 122, "blue": 122}, "percentage": 1.43}, {"rgb": {"red": 160, "green": 228, "blue": 241}, "percentage": 0.21}]}, "profile_image_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_banner_extensions_alt_text": null, "profile_banner_extensions_media_availability": null, "profile_banner_extensions_media_color": {"palette": [{"rgb": {"red": 127, "green": 140, "blue": 149}, "percentage": 31.49}, {"rgb": {"red": 229, "green": 231, "blue": 233}, "percentage": 29.16}, {"rgb": {"red": 30, "green": 48, "blue": 18}, "percentage": 8.9}, {"rgb": {"red": 115, "green": 122, "blue": 62}, "percentage": 5.29}, {"rgb": {"red": 72, "green": 29, "blue": 13}, "percentage": 4.2}]}, "profile_banner_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_link_color": "1B95E0", "profile_sidebar_border_color": "EEEEEE", "profile_sidebar_fill_color": "F6F6F6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": false, "default_profile_image": false, "pinned_tweet_ids": [1410483305686855680], "pinned_tweet_ids_str": ["1410483305686855680"], "has_custom_timelines": false, "can_dm": null, "following": null, "follow_request_sent": null, "notifications": null, "muting": null, "blocking": null, "blocked_by": null, "want_retweets": null, "advertiser_account_type": "promotable_user", "advertiser_account_service_levels": ["reseller", "analytics"], "profile_interstitial_type": "", "business_profile_state": "none", "translator_type": "none", "withheld_in_countries": [], "followed_by": null, "ext": {"highlightedLabel": {"r": {"ok": {}}, "ttl": -1}}, "require_some_consent": false}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:23.921753+02:00", "raw_value": {"id": 194399035, "id_str": "194399035", "name": "Rzeczpospolita", "screen_name": "rzeczpospolita", "location": "Polska", "description": "Rzeczpospolita to jeden z lider\u00f3w prasy codziennej w Polsce. Jest najcz\u0119\u015bciej cytowan\u0105 gazet\u0105 w kraju. Oto jedyny oficjalny profil Rz.", "url": "https://t.co/lg4AvBS252", "entities": {"url": {"urls": [{"url": "https://t.co/lg4AvBS252", "expanded_url": "http://www.rp.pl", "display_url": "rp.pl", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 232089, "fast_followers_count": 0, "normal_followers_count": 232089, "friends_count": 647, "listed_count": 980, "created_at": "Fri Sep 24 01:14:56 +0000 2010", "favourites_count": 1954, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": true, "statuses_count": 219787, "media_count": 38916, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "F7F7F7", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme7/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme7/bg.gif", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1410501087862341632/xn0fmSY9_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1410501087862341632/xn0fmSY9_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/194399035/1631616273", "profile_image_extensions_alt_text": null, "profile_image_extensions_media_availability": null, "profile_image_extensions_media_color": {"palette": [{"rgb": {"red": 206, "green": 206, "blue": 206}, "percentage": 93.55}, {"rgb": {"red": 82, "green": 82, "blue": 82}, "percentage": 3.54}]}, "profile_image_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_banner_extensions_alt_text": null, "profile_banner_extensions_media_availability": null, "profile_banner_extensions_media_color": {"palette": [{"rgb": {"red": 229, "green": 245, "blue": 219}, "percentage": 95.24}, {"rgb": {"red": 127, "green": 136, "blue": 122}, "percentage": 2.51}, {"rgb": {"red": 28, "green": 28, "blue": 28}, "percentage": 2.22}]}, "profile_banner_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_link_color": "CC0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "F3F3F3", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": false, "default_profile_image": false, "pinned_tweet_ids": [], "pinned_tweet_ids_str": [], "has_custom_timelines": true, "can_dm": null, "following": null, "follow_request_sent": null, "notifications": null, "muting": null, "blocking": null, "blocked_by": null, "want_retweets": null, "advertiser_account_type": "promotable_user", "advertiser_account_service_levels": ["smb"], "profile_interstitial_type": "", "business_profile_state": "none", "translator_type": "none", "withheld_in_countries": [], "followed_by": null, "ext": {"highlightedLabel": {"r": {"ok": {}}, "ttl": -1}}, "require_some_consent": false}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:23.921859+02:00", "raw_value": {"id": 2153092339, "id_str": "2153092339", "name": "Marek Wojtaszek", "screen_name": "WojtaszekMarek", "location": "Krak\u00f3w, Ma\u0142opolskie", "description": "Jestem osob\u0105 trans-vaxualn\u0105, tzn. nie przyj\u0105\u0142em ani jednej dawki, ale identyfikuj\u0119 si\u0119 jako zaszczepiony wi\u0119c prosz\u0119 mnie nie dyskryminowa\u0107.", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 2847, "fast_followers_count": 0, "normal_followers_count": 2847, "friends_count": 950, "listed_count": 28, "created_at": "Thu Oct 24 14:38:16 +0000 2013", "favourites_count": 56808, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 72216, "media_count": 1880, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": true, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1172828293508341761/GUlLiL7A_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1172828293508341761/GUlLiL7A_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/2153092339/1594926341", "profile_image_extensions_alt_text": null, "profile_image_extensions_media_color": {"palette": [{"rgb": {"red": 211, "green": 211, "blue": 211}, "percentage": 61.24}, {"rgb": {"red": 52, "green": 52, "blue": 52}, "percentage": 26.9}]}, "profile_image_extensions_media_availability": null, "profile_image_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_banner_extensions_alt_text": null, "profile_banner_extensions_media_availability": null, "profile_banner_extensions_media_color": {"palette": [{"rgb": {"red": 33, "green": 36, "blue": 39}, "percentage": 71.98}, {"rgb": {"red": 216, "green": 213, "blue": 208}, "percentage": 21.86}, {"rgb": {"red": 103, "green": 107, "blue": 114}, "percentage": 6.01}, {"rgb": {"red": 78, "green": 43, "blue": 45}, "percentage": 0.13}]}, "profile_banner_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_link_color": "3B94D9", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "has_extended_profile": false, "default_profile": false, "default_profile_image": false, "pinned_tweet_ids": [1448571981637554180], "pinned_tweet_ids_str": ["1448571981637554180"], "has_custom_timelines": false, "can_dm": null, "following": null, "follow_request_sent": null, "notifications": null, "muting": null, "blocking": null, "blocked_by": null, "want_retweets": null, "advertiser_account_type": "promotable_user", "advertiser_account_service_levels": ["smb"], "profile_interstitial_type": "", "business_profile_state": "none", "translator_type": "none", "withheld_in_countries": [], "followed_by": null, "ext": {"highlightedLabel": {"r": {"ok": {}}, "ttl": -1}}, "require_some_consent": false}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:23.921980+02:00", "raw_value": {"id": 11640112, "id_str": "11640112", "name": "Czarek Czerwi\u0144ski \ud83d\udc15\ud83d\udc08\ud83d\udeb2", "screen_name": "ckwadrat", "location": "Parafia Zabor\u00f3w", "description": "Trzymam piecz\u0119 nad https://t.co/ybqhXpUv3w. Kiedy\u015b autor/redaktor w PCkurierze, Enterze, Chipie", "url": "https://t.co/eXlev3UDri", "entities": {"url": {"urls": [{"url": "https://t.co/eXlev3UDri", "expanded_url": "https://naszeblogi.pl/", "display_url": "naszeblogi.pl", "indices": [0, 23]}]}, "description": {"urls": [{"url": "https://t.co/ybqhXpUv3w", "expanded_url": "http://NaszeBlogi.pl", "display_url": "NaszeBlogi.pl", "indices": [19, 42]}]}}, "protected": false, "followers_count": 3538, "fast_followers_count": 0, "normal_followers_count": 3538, "friends_count": 1378, "listed_count": 36, "created_at": "Sat Dec 29 20:29:09 +0000 2007", "favourites_count": 81519, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 56367, "media_count": 1983, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "6AA8A7", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme8/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme8/bg.gif", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1289649244190670848/wOq_4oQs_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1289649244190670848/wOq_4oQs_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/11640112/1400665045", "profile_image_extensions_alt_text": null, "profile_image_extensions_media_availability": null, "profile_image_extensions_media_color": {"palette": [{"rgb": {"red": 27, "green": 29, "blue": 32}, "percentage": 28.16}, {"rgb": {"red": 159, "green": 108, "blue": 89}, "percentage": 21.59}, {"rgb": {"red": 90, "green": 120, "blue": 55}, "percentage": 12.66}, {"rgb": {"red": 170, "green": 197, "blue": 199}, "percentage": 10.48}, {"rgb": {"red": 91, "green": 128, "blue": 112}, "percentage": 9.23}]}, "profile_image_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_banner_extensions_media_color": {"palette": [{"rgb": {"red": 116, "green": 117, "blue": 110}, "percentage": 45.95}, {"rgb": {"red": 160, "green": 172, "blue": 180}, "percentage": 42.81}, {"rgb": {"red": 76, "green": 74, "blue": 40}, "percentage": 3.51}, {"rgb": {"red": 159, "green": 153, "blue": 131}, "percentage": 2.76}, {"rgb": {"red": 41, "green": 42, "blue": 29}, "percentage": 1.27}]}, "profile_banner_extensions_alt_text": null, "profile_banner_extensions_media_availability": null, "profile_banner_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_link_color": "ABB8C2", "profile_sidebar_border_color": "FFFFFF", "profile_sidebar_fill_color": "EADEAA", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": false, "default_profile_image": false, "pinned_tweet_ids": [], "pinned_tweet_ids_str": [], "has_custom_timelines": true, "can_dm": null, "following": null, "follow_request_sent": null, "notifications": null, "muting": null, "blocking": null, "blocked_by": null, "want_retweets": null, "advertiser_account_type": "promotable_user", "advertiser_account_service_levels": ["analytics"], "profile_interstitial_type": "", "business_profile_state": "none", "translator_type": "none", "withheld_in_countries": [], "followed_by": null, "ext": {"highlightedLabel": {"r": {"ok": {}}, "ttl": -1}}, "require_some_consent": false}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:23.922110+02:00", "raw_value": {"id": 193735706, "id_str": "193735706", "name": "Polskie Radio RDC", "screen_name": "rdcpolskieradio", "location": "Warsaw", "description": "Najwi\u0119ksza stacja radiowa na Mazowszu. Warszawska rozg\u0142o\u015bnia Polskiego Radia z o\u015brodkami w Radomiu, P\u0142ocku, Ciechanowie, Ostro\u0142\u0119ce i Siedlcach #RDC", "url": "https://t.co/VnvJQV66Hl", "entities": {"url": {"urls": [{"url": "https://t.co/VnvJQV66Hl", "expanded_url": "http://www.rdc.pl", "display_url": "rdc.pl", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 6902, "fast_followers_count": 0, "normal_followers_count": 6902, "friends_count": 480, "listed_count": 85, "created_at": "Wed Sep 22 15:27:55 +0000 2010", "favourites_count": 4999, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 58745, "media_count": 26139, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "022330", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1323966238301822978/6sbtUZNO_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1323966238301822978/6sbtUZNO_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/193735706/1604676177", "profile_image_extensions_media_color": {"palette": [{"rgb": {"red": 255, "green": 255, "blue": 255}, "percentage": 71.89}, {"rgb": {"red": 40, "green": 64, "blue": 134}, "percentage": 12.91}, {"rgb": {"red": 244, "green": 131, "blue": 36}, "percentage": 4.17}, {"rgb": {"red": 39, "green": 63, "blue": 144}, "percentage": 2.06}, {"rgb": {"red": 249, "green": 224, "blue": 192}, "percentage": 1.54}]}, "profile_image_extensions_alt_text": null, "profile_image_extensions_media_availability": null, "profile_image_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_banner_extensions_alt_text": null, "profile_banner_extensions_media_availability": null, "profile_banner_extensions_media_color": {"palette": [{"rgb": {"red": 242, "green": 241, "blue": 242}, "percentage": 68.13}, {"rgb": {"red": 143, "green": 148, "blue": 187}, "percentage": 19.3}, {"rgb": {"red": 249, "green": 212, "blue": 175}, "percentage": 8.42}, {"rgb": {"red": 245, "green": 182, "blue": 116}, "percentage": 3.83}, {"rgb": {"red": 241, "green": 146, "blue": 45}, "percentage": 0.1}]}, "profile_banner_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_link_color": "0084B4", "profile_sidebar_border_color": "FFFFFF", "profile_sidebar_fill_color": "C0DFEC", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "pinned_tweet_ids": [], "pinned_tweet_ids_str": [], "has_custom_timelines": true, "can_dm": null, "following": null, "follow_request_sent": null, "notifications": null, "muting": null, "blocking": null, "blocked_by": null, "want_retweets": null, "advertiser_account_type": "promotable_user", "advertiser_account_service_levels": ["analytics"], "profile_interstitial_type": "", "business_profile_state": "none", "translator_type": "none", "withheld_in_countries": [], "followed_by": null, "ext": {"highlightedLabel": {"r": {"ok": {}}, "ttl": -1}}, "require_some_consent": false}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:23.922222+02:00", "raw_value": {"id": 1027346533258285056, "id_str": "1027346533258285056", "name": "Gra\u017cyna Houwalt \ud83c\uddf5\ud83c\uddf1\u271d\ufe0f #BabiesLivesMatter", "screen_name": "Grayna62989731", "location": "", "description": "", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 128, "fast_followers_count": 0, "normal_followers_count": 128, "friends_count": 170, "listed_count": 0, "created_at": "Thu Aug 09 00:11:15 +0000 2018", "favourites_count": 17877, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 6458, "media_count": 614, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "F5F8FA", "profile_background_image_url": null, "profile_background_image_url_https": null, "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1326792199179276289/_NNEOyhp_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1326792199179276289/_NNEOyhp_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1027346533258285056/1617526145", "profile_image_extensions_alt_text": null, "profile_image_extensions_media_availability": null, "profile_image_extensions_media_color": {"palette": [{"rgb": {"red": 255, "green": 255, "blue": 255}, "percentage": 86.97}, {"rgb": {"red": 32, "green": 26, "blue": 26}, "percentage": 11.29}]}, "profile_image_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_banner_extensions_alt_text": null, "profile_banner_extensions_media_availability": null, "profile_banner_extensions_media_color": {"palette": [{"rgb": {"red": 226, "green": 188, "blue": 117}, "percentage": 44.17}, {"rgb": {"red": 151, "green": 76, "blue": 19}, "percentage": 24.27}, {"rgb": {"red": 215, "green": 174, "blue": 146}, "percentage": 8.03}, {"rgb": {"red": 114, "green": 71, "blue": 55}, "percentage": 7.74}, {"rgb": {"red": 44, "green": 35, "blue": 40}, "percentage": 6.45}]}, "profile_banner_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": true, "default_profile_image": false, "pinned_tweet_ids": [], "pinned_tweet_ids_str": [], "has_custom_timelines": true, "can_dm": null, "following": null, "follow_request_sent": null, "notifications": null, "muting": null, "blocking": null, "blocked_by": null, "want_retweets": null, "advertiser_account_type": "none", "advertiser_account_service_levels": [], "profile_interstitial_type": "", "business_profile_state": "none", "translator_type": "none", "withheld_in_countries": [], "followed_by": null, "ext": {"highlightedLabel": {"r": {"ok": {}}, "ttl": -1}}, "require_some_consent": false}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:23.922346+02:00", "raw_value": {"id": 2374445305, "id_str": "2374445305", "name": "Bartosz Ko\u0142odziejczyk", "screen_name": "Kolodziejczyk94", "location": "Polska", "description": "Wirtualna Polska, wcze\u015bniej https://t.co/AQHOPxKo8x", "url": null, "entities": {"description": {"urls": [{"url": "https://t.co/AQHOPxKo8x", "expanded_url": "http://tvn24.pl", "display_url": "tvn24.pl", "indices": [28, 51]}]}}, "protected": false, "followers_count": 138, "fast_followers_count": 0, "normal_followers_count": 138, "friends_count": 1233, "listed_count": 1, "created_at": "Wed Mar 05 22:42:39 +0000 2014", "favourites_count": 2434, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 1265, "media_count": 37, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1181659002314395648/MOKbVwIc_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1181659002314395648/MOKbVwIc_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/2374445305/1394062146", "profile_image_extensions_alt_text": null, "profile_image_extensions_media_availability": null, "profile_image_extensions_media_color": {"palette": [{"rgb": {"red": 175, "green": 174, "blue": 138}, "percentage": 33.62}, {"rgb": {"red": 36, "green": 31, "blue": 25}, "percentage": 28.96}, {"rgb": {"red": 90, "green": 93, "blue": 52}, "percentage": 12.39}, {"rgb": {"red": 24, "green": 29, "blue": 45}, "percentage": 8.73}, {"rgb": {"red": 183, "green": 189, "blue": 203}, "percentage": 4.09}]}, "profile_image_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_banner_extensions_media_color": {"palette": [{"rgb": {"red": 1, "green": 1, "blue": 1}, "percentage": 55.22}, {"rgb": {"red": 205, "green": 198, "blue": 192}, "percentage": 30.53}, {"rgb": {"red": 124, "green": 112, "blue": 103}, "percentage": 17.29}, {"rgb": {"red": 109, "green": 91, "blue": 79}, "percentage": 0.95}, {"rgb": {"red": 125, "green": 104, "blue": 97}, "percentage": 0.13}]}, "profile_banner_extensions_alt_text": null, "profile_banner_extensions_media_availability": null, "profile_banner_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_link_color": "2FC2EF", "profile_sidebar_border_color": "181A1E", "profile_sidebar_fill_color": "252429", "profile_text_color": "666666", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "pinned_tweet_ids": [], "pinned_tweet_ids_str": [], "has_custom_timelines": true, "can_dm": null, "following": null, "follow_request_sent": null, "notifications": null, "muting": null, "blocking": null, "blocked_by": null, "want_retweets": null, "advertiser_account_type": "none", "advertiser_account_service_levels": [], "profile_interstitial_type": "", "business_profile_state": "none", "translator_type": "none", "withheld_in_countries": [], "followed_by": null, "ext": {"highlightedLabel": {"r": {"ok": {}}, "ttl": -1}}, "require_some_consent": false}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:23.922466+02:00", "raw_value": {"id": 976481460944359429, "id_str": "976481460944359429", "name": "Puls Medycyny", "screen_name": "Puls_Medycyny", "location": "Warszawa, Polska", "description": "Specjalistyczny serwis medyczny dla lekarzy, farmaceut\u00f3w, student\u00f3w, os\u00f3b zwi\u0105zanych zawodowo z ochron\u0105 zdrowia oraz pacjent\u00f3w", "url": "https://t.co/rZtAVsVdD8", "entities": {"url": {"urls": [{"url": "https://t.co/rZtAVsVdD8", "expanded_url": "http://pulsmedycyny.pl/", "display_url": "pulsmedycyny.pl", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 4371, "fast_followers_count": 0, "normal_followers_count": 4371, "friends_count": 570, "listed_count": 29, "created_at": "Wed Mar 21 15:31:37 +0000 2018", "favourites_count": 1449, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 5131, "media_count": 496, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "F5F8FA", "profile_background_image_url": null, "profile_background_image_url_https": null, "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1014132149186912257/pZrLl_xO_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1014132149186912257/pZrLl_xO_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/976481460944359429/1629101350", "profile_image_extensions_alt_text": null, "profile_image_extensions_media_availability": null, "profile_image_extensions_media_color": {"palette": [{"rgb": {"red": 0, "green": 133, "blue": 166}, "percentage": 93.36}, {"rgb": {"red": 255, "green": 254, "blue": 253}, "percentage": 5.14}, {"rgb": {"red": 220, "green": 202, "blue": 162}, "percentage": 0.93}, {"rgb": {"red": 113, "green": 170, "blue": 161}, "percentage": 0.17}, {"rgb": {"red": 58, "green": 160, "blue": 172}, "percentage": 0.17}]}, "profile_image_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_banner_extensions_alt_text": null, "profile_banner_extensions_media_availability": null, "profile_banner_extensions_media_color": {"palette": [{"rgb": {"red": 246, "green": 240, "blue": 229}, "percentage": 50.51}, {"rgb": {"red": 231, "green": 202, "blue": 136}, "percentage": 24.02}, {"rgb": {"red": 242, "green": 228, "blue": 197}, "percentage": 8.79}, {"rgb": {"red": 70, "green": 182, "blue": 169}, "percentage": 6.85}, {"rgb": {"red": 48, "green": 84, "blue": 112}, "percentage": 3.85}]}, "profile_banner_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": true, "default_profile_image": false, "pinned_tweet_ids": [], "pinned_tweet_ids_str": [], "has_custom_timelines": true, "can_dm": null, "following": null, "follow_request_sent": null, "notifications": null, "muting": null, "blocking": null, "blocked_by": null, "want_retweets": null, "advertiser_account_type": "promotable_user", "advertiser_account_service_levels": ["analytics"], "profile_interstitial_type": "", "business_profile_state": "none", "translator_type": "none", "withheld_in_countries": [], "followed_by": null, "ext": {"highlightedLabel": {"r": {"ok": {}}, "ttl": -1}}, "require_some_consent": false}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:23.922593+02:00", "raw_value": {"id": 790806417468952576, "id_str": "790806417468952576", "name": "GUS", "screen_name": "GUS_STAT", "location": "Warszawa, Polska", "description": "GUS zapewnia rzetelne, obiektywne i systematyczne informacje o sytuacji spo\u0142eczno-gospodarczej kraju. Wi\u0119cej na: https://t.co/Mn2hxYlkqi || English: @StatPoland", "url": "https://t.co/Mn2hxYlkqi", "entities": {"url": {"urls": [{"url": "https://t.co/Mn2hxYlkqi", "expanded_url": "http://stat.gov.pl/", "display_url": "stat.gov.pl", "indices": [0, 23]}]}, "description": {"urls": [{"url": "https://t.co/Mn2hxYlkqi", "expanded_url": "http://stat.gov.pl/", "display_url": "stat.gov.pl", "indices": [113, 136]}]}}, "protected": false, "followers_count": 12819, "fast_followers_count": 0, "normal_followers_count": 12819, "friends_count": 495, "listed_count": 93, "created_at": "Tue Oct 25 06:45:17 +0000 2016", "favourites_count": 774, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 5183, "media_count": 3782, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1443698253904715779/mziDnprG_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1443698253904715779/mziDnprG_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/790806417468952576/1633039402", "profile_image_extensions_alt_text": null, "profile_image_extensions_media_availability": null, "profile_image_extensions_media_color": {"palette": [{"rgb": {"red": 255, "green": 255, "blue": 255}, "percentage": 85.39}, {"rgb": {"red": 24, "green": 51, "blue": 128}, "percentage": 4.65}, {"rgb": {"red": 180, "green": 210, "blue": 52}, "percentage": 4.48}, {"rgb": {"red": 11, "green": 3, "blue": 4}, "percentage": 3.61}, {"rgb": {"red": 202, "green": 216, "blue": 126}, "percentage": 0.61}]}, "profile_image_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_banner_extensions_alt_text": null, "profile_banner_extensions_media_availability": null, "profile_banner_extensions_media_color": {"palette": [{"rgb": {"red": 0, "green": 104, "blue": 152}, "percentage": 76.89}, {"rgb": {"red": 210, "green": 225, "blue": 232}, "percentage": 14.12}, {"rgb": {"red": 8, "green": 39, "blue": 123}, "percentage": 2.76}, {"rgb": {"red": 32, "green": 50, "blue": 72}, "percentage": 2.6}, {"rgb": {"red": 0, "green": 123, "blue": 185}, "percentage": 1.36}]}, "profile_banner_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_link_color": "1B95E0", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "pinned_tweet_ids": [1443699105918865411], "pinned_tweet_ids_str": ["1443699105918865411"], "has_custom_timelines": true, "can_dm": null, "following": null, "follow_request_sent": null, "notifications": null, "muting": null, "blocking": null, "blocked_by": null, "want_retweets": null, "advertiser_account_type": "promotable_user", "advertiser_account_service_levels": ["reseller", "analytics"], "profile_interstitial_type": "", "business_profile_state": "none", "translator_type": "none", "withheld_in_countries": [], "followed_by": null, "ext": {"highlightedLabel": {"r": {"ok": {}}, "ttl": -1}}, "require_some_consent": false}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:23.922673+02:00", "raw_value": {"id": 1122436589022478336, "id_str": "1122436589022478336", "name": "andrzej__j", "screen_name": "andrzej___j", "location": "Jasienica, Polska", "description": "", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 52, "fast_followers_count": 0, "normal_followers_count": 52, "friends_count": 38, "listed_count": 0, "created_at": "Sun Apr 28 09:45:11 +0000 2019", "favourites_count": 2277, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 1134, "media_count": 436, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "F5F8FA", "profile_background_image_url": null, "profile_background_image_url_https": null, "profile_background_tile": false, "profile_image_url": "http://abs.twimg.com/sticky/default_profile_images/default_profile_normal.png", "profile_image_url_https": "https://abs.twimg.com/sticky/default_profile_images/default_profile_normal.png", "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": true, "default_profile_image": true, "pinned_tweet_ids": [], "pinned_tweet_ids_str": [], "has_custom_timelines": false, "can_dm": null, "following": null, "follow_request_sent": null, "notifications": null, "muting": null, "blocking": null, "blocked_by": null, "want_retweets": null, "advertiser_account_type": "none", "advertiser_account_service_levels": [], "profile_interstitial_type": "", "business_profile_state": "none", "translator_type": "none", "withheld_in_countries": [], "followed_by": null, "ext": {"highlightedLabel": {"r": {"ok": {}}, "ttl": -1}}, "require_some_consent": false}}
last_scrap_zero False is_cursor True
need_guest_token True
run request RequestDetails(http_method=<HttpMethod.GET: 1>, url='https://twitter.com/i/api/2/search/adaptive.json', headers={'Authorization': 'Bearer AAAAAAAAAAAAAAAAAAAAANRILgAAAAAAnNwIzUejRCOuH5E6I8xnZz4puTs%3D1Zv7ttfk8LF81IUq16cHjhLTvJu4FA33AGWWjCpTnA', 'x-guest-token': '1448607857604272138'}, params={'include_profile_interstitial_type': '1', 'include_blocking': '1', 'include_blocked_by': '1', 'include_followed_by': '1', 'include_want_retweets': '1', 'include_mute_edge': '1', 'include_can_dm': '1', 'include_can_media_tag': '1', 'skip_status': '1', 'cards_platform': 'Web-12', 'include_cards': '1', 'include_ext_alt_text': 'true', 'include_quote_count': 'true', 'include_reply_count': '1', 'tweet_mode': 'extended', 'include_entities': 'true', 'include_user_entities': 'true', 'include_ext_media_color': 'true', 'include_ext_media_availability': 'true', 'send_error_codes': 'true', 'simple_quoted_tweet': 'true', 'q': '#covid19', 'count': 20, 'query_source': 'typed_query', 'pc': '1', 'spelling_corrections': '1', 'ext': 'mediaStats,highlightedLabel,voiceInfo', 'cursor': 'scroll:thGAVUV0VFVBYBFoC0hs-m5aeaKBIY1AISY8LrAAAB9D-AYk3S8an8AAAAKBQaaAeY1mACFBpcndSWYAUUGnoHiRcgABQaeVrFlkAFFBplUKAWUAAUGln99RewBBQaefDYV7ABFBp0ngDWEAUUGlm_55cQCBQaXqiTFSACFBpv8PUXoAcUGlAnfxcgARQaS0AclhADFBpTECuXoAEUGetlrVfQABQaWMLPFyACFBpDL7TWQAAUGb0g5lZQBRQaZBMcVyACFBpYe43X0AEUGex5RFYQAxQaZ2xNV7AGFBpdyd2WEAAUGlRMEVcQABQaXsMB1kAEFBp56MBXMAEUGlmMhRYQAhQaVE_vFyADFBpei0RWQAEUGey_YlYQAhQaY9I41lADFBpwBY6XMAIUGjAkHtegBRQacug1F7AAFBpcit0XEAQUGkRcidYQAhQabsUGV7ABFBpaWyMX0AIUGnIiFVZgBRQaaOZxF9ABYRW4gnoVgIl6GAZUT1BJQ1M1UBUCFQAA'}, timeout=20)
200
{"object_type": "TweetRaw", "download_datetime": "2021-10-14T13:13:25.036021+02:00", "raw_value": {"created_at": "Thu Oct 14 02:35:12 +0000 2021", "id": 1448477461327630347, "id_str": "1448477461327630347", "full_text": "wow another coincidence https://t.co/94NvegJTux", "truncated": false, "display_text_range": [0, 23], "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [], "media": [{"id": 1448477452821487617, "id_str": "1448477452821487617", "indices": [24, 47], "media_url": "http://pbs.twimg.com/media/FBoGkaiWYAEpY2Z.jpg", "media_url_https": "https://pbs.twimg.com/media/FBoGkaiWYAEpY2Z.jpg", "url": "https://t.co/94NvegJTux", "display_url": "pic.twitter.com/94NvegJTux", "expanded_url": "https://twitter.com/Lukewearechange/status/1448477461327630347/photo/1", "type": "photo", "original_info": {"width": 1170, "height": 1239, "focus_rects": [{"x": 0, "y": 199, "h": 655, "w": 1170}, {"x": 0, "y": 0, "h": 1170, "w": 1170}, {"x": 0, "y": 0, "h": 1239, "w": 1087}, {"x": 0, "y": 0, "h": 1239, "w": 620}, {"x": 0, "y": 0, "h": 1239, "w": 1170}]}, "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 1133, "h": 1200, "resize": "fit"}, "small": {"w": 642, "h": 680, "resize": "fit"}, "large": {"w": 1170, "h": 1239, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 1448477452821487617, "id_str": "1448477452821487617", "indices": [24, 47], "media_url": "http://pbs.twimg.com/media/FBoGkaiWYAEpY2Z.jpg", "media_url_https": "https://pbs.twimg.com/media/FBoGkaiWYAEpY2Z.jpg", "url": "https://t.co/94NvegJTux", "display_url": "pic.twitter.com/94NvegJTux", "expanded_url": "https://twitter.com/Lukewearechange/status/1448477461327630347/photo/1", "type": "photo", "original_info": {"width": 1170, "height": 1239, "focus_rects": [{"x": 0, "y": 199, "h": 655, "w": 1170}, {"x": 0, "y": 0, "h": 1170, "w": 1170}, {"x": 0, "y": 0, "h": 1239, "w": 1087}, {"x": 0, "y": 0, "h": 1239, "w": 620}, {"x": 0, "y": 0, "h": 1239, "w": 1170}]}, "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 1133, "h": 1200, "resize": "fit"}, "small": {"w": 642, "h": 680, "resize": "fit"}, "large": {"w": 1170, "h": 1239, "resize": "fit"}}, "media_key": "3_1448477452821487617", "ext_alt_text": null, "ext_media_color": {"palette": [{"rgb": {"red": 248, "green": 248, "blue": 248}, "percentage": 74.77}, {"rgb": {"red": 249, "green": 236, "blue": 78}, "percentage": 12.56}, {"rgb": {"red": 62, "green": 59, "blue": 60}, "percentage": 3.18}, {"rgb": {"red": 72, "green": 97, "blue": 147}, "percentage": 1.57}, {"rgb": {"red": 246, "green": 240, "blue": 146}, "percentage": 0.9}]}, "ext_media_availability": {"status": "available"}, "ext": {"mediaStats": {"r": "Missing", "ttl": -1}}}]}, "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user_id": 95994080, "user_id_str": "95994080", "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 1219, "favorite_count": 3430, "reply_count": 89, "quote_count": 80, "conversation_id": 1448477461327630347, "conversation_id_str": "1448477461327630347", "favorited": false, "retweeted": false, "possibly_sensitive": false, "possibly_sensitive_editable": true, "lang": "en", "supplemental_language": null}}
{"object_type": "TweetRaw", "download_datetime": "2021-10-14T13:13:25.036266+02:00", "raw_value": {"created_at": "Thu Oct 14 08:54:41 +0000 2021", "id": 1448572958449061894, "id_str": "1448572958449061894", "full_text": "Najwi\u0119cej nowych przypadk\u00f3w zaka\u017cenia \u2013 152 \u2013 potwierdzono w Lublinie. \n#lublin #koronawirus #covid19 \nhttps://t.co/VQBNjI3J7W", "truncated": false, "display_text_range": [0, 126], "entities": {"hashtags": [{"text": "lublin", "indices": [72, 79]}, {"text": "koronawirus", "indices": [80, 92]}, {"text": "covid19", "indices": [93, 101]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/VQBNjI3J7W", "expanded_url": "https://radio.lublin.pl/2021/10/3000-nowych-przypadkow-koronawirusa-zmarlo-60-osob-671-chorych-na-lubelszczyznie/", "display_url": "radio.lublin.pl/2021/10/3000-n\u2026", "indices": [103, 126]}]}, "source": "<a href=\"https://mobile.twitter.com\" rel=\"nofollow\">Twitter Web App</a>", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user_id": 770928613227200512, "user_id_str": "770928613227200512", "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 1, "reply_count": 0, "quote_count": 0, "conversation_id": 1448572958449061894, "conversation_id_str": "1448572958449061894", "favorited": false, "retweeted": false, "possibly_sensitive": false, "possibly_sensitive_editable": true, "card": {"name": "summary_large_image", "url": "https://t.co/VQBNjI3J7W", "card_type_url": "http://card-type-url-is-deprecated.invalid", "binding_values": {"vanity_url": {"type": "STRING", "string_value": "radio.lublin.pl", "scribe_key": "vanity_url"}, "amp": {"type": "BOOLEAN", "boolean_value": true}, "domain": {"type": "STRING", "string_value": "radio.lublin.pl"}, "title": {"type": "STRING", "string_value": "3000 nowych przypadk\u00f3w koronawirusa, zmar\u0142o 60 os\u00f3b. 671 chorych na Lubelszczy\u017anie"}, "description": {"type": "STRING", "string_value": "Dzi\u015b (14.10) po godzinie 10.30 Ministerstwo Zdrowia poinformowa\u0142o o 3000 nowych i potwierdzonych przypadkach zaka\u017cenia koronawirusem w Polsce, w tym"}, "thumbnail_image_small": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448572607113179136/WDczWm2f?format=jpg&name=100x100", "width": 100, "height": 82, "alt": null}}, "thumbnail_image": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448572607113179136/WDczWm2f?format=jpg&name=280x150", "width": 183, "height": 150, "alt": null}}, "thumbnail_image_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448572607113179136/WDczWm2f?format=jpg&name=800x320_1", "width": 391, "height": 320, "alt": null}}, "thumbnail_image_x_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448572607113179136/WDczWm2f?format=png&name=2048x2048_2_exp", "width": 1252, "height": 1024, "alt": null}}, "thumbnail_image_original": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448572607113179136/WDczWm2f?format=jpg&name=orig", "width": 1252, "height": 1024, "alt": null}}, "summary_photo_image_small": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448572607113179136/WDczWm2f?format=jpg&name=386x202", "width": 386, "height": 202, "alt": null}}, "summary_photo_image": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448572607113179136/WDczWm2f?format=jpg&name=600x314", "width": 600, "height": 314, "alt": null}}, "summary_photo_image_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448572607113179136/WDczWm2f?format=jpg&name=800x419", "width": 800, "height": 419, "alt": null}}, "summary_photo_image_x_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448572607113179136/WDczWm2f?format=png&name=2048x2048_2_exp", "width": 1252, "height": 1024, "alt": null}}, "summary_photo_image_original": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448572607113179136/WDczWm2f?format=jpg&name=orig", "width": 1252, "height": 1024, "alt": null}}, "photo_image_full_size_small": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448572607113179136/WDczWm2f?format=jpg&name=386x202", "width": 386, "height": 202, "alt": null}}, "photo_image_full_size": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448572607113179136/WDczWm2f?format=jpg&name=600x314", "width": 600, "height": 314, "alt": null}}, "photo_image_full_size_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448572607113179136/WDczWm2f?format=jpg&name=800x419", "width": 800, "height": 419, "alt": null}}, "photo_image_full_size_x_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448572607113179136/WDczWm2f?format=png&name=2048x2048_2_exp", "width": 1252, "height": 1024, "alt": null}}, "photo_image_full_size_original": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448572607113179136/WDczWm2f?format=jpg&name=orig", "width": 1252, "height": 1024, "alt": null}}, "card_url": {"type": "STRING", "string_value": "https://t.co/VQBNjI3J7W", "scribe_key": "card_url"}}, "card_platform": {"platform": {"device": {"name": "Swift", "version": "12"}, "audience": {"name": "production", "bucket": null}}}}, "lang": "pl", "supplemental_language": null}}
{"object_type": "TweetRaw", "download_datetime": "2021-10-14T13:13:25.036428+02:00", "raw_value": {"created_at": "Thu Oct 14 08:49:23 +0000 2021", "id": 1448571626568704004, "id_str": "1448571626568704004", "full_text": "Rz\u0105d przygotowuje si\u0119 na tworzenie rezerwy leku, kt\u00f3ry mo\u017ce skutecznie leczy\u0107 COVID-19 \n#koronawirus #COVID19 @grzesiowski_p @Marcin__Czech \nhttps://t.co/PaHIaW15mm", "truncated": false, "display_text_range": [0, 164], "entities": {"hashtags": [{"text": "koronawirus", "indices": [88, 100]}, {"text": "COVID19", "indices": [101, 109]}], "symbols": [], "user_mentions": [{"screen_name": "grzesiowski_p", "name": "Pawel Grzesiowski", "id": 1124646406701105152, "id_str": "1124646406701105152", "indices": [110, 124]}, {"screen_name": "Marcin__Czech", "name": "Marcin Czech", "id": 1049997550940549120, "id_str": "1049997550940549120", "indices": [125, 139]}], "urls": [{"url": "https://t.co/PaHIaW15mm", "expanded_url": "https://cowzdrowiu.pl/aktualnosci/post/polska-chce-samodzielnie-gromadzic-zapas-leku-na-covid-19", "display_url": "cowzdrowiu.pl/aktualnosci/po\u2026", "indices": [141, 164]}]}, "source": "<a href=\"https://mobile.twitter.com\" rel=\"nofollow\">Twitter Web App</a>", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user_id": 1182033067663331329, "user_id_str": "1182033067663331329", "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "reply_count": 0, "quote_count": 0, "conversation_id": 1448571626568704004, "conversation_id_str": "1448571626568704004", "favorited": false, "retweeted": false, "possibly_sensitive": false, "possibly_sensitive_editable": true, "card": {"name": "summary", "url": "https://t.co/PaHIaW15mm", "card_type_url": "http://card-type-url-is-deprecated.invalid", "binding_values": {"vanity_url": {"type": "STRING", "string_value": "cowzdrowiu.pl", "scribe_key": "vanity_url"}, "domain": {"type": "STRING", "string_value": "cowzdrowiu.pl"}, "title": {"type": "STRING", "string_value": "Rz\u0105d przygotowuje si\u0119 na tworzenie rezerwy leku, kt\u00f3ry mo\u017ce skutecznie leczy\u0107 COVID-19"}, "description": {"type": "STRING", "string_value": "Resort zdrowia my\u015bli o utworzeniu rezerwy leku, kt\u00f3ry mo\u017ce okaza\u0107 si\u0119 skuteczny na COVID-19. Decyzj\u0119 w tej sprawie uzale\u017cnia od dopuszczenia preparatu do u\u017cytku w Europie - informuje Dziennik Gazeta..."}, "thumbnail_image_small": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448571501339361281/bgntEz5z?format=jpg&name=100x100_2", "width": 100, "height": 100, "alt": null}}, "thumbnail_image": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448571501339361281/bgntEz5z?format=jpg&name=144x144_2", "width": 144, "height": 144, "alt": null}}, "thumbnail_image_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448571501339361281/bgntEz5z?format=jpg&name=420x420_2", "width": 420, "height": 420, "alt": null}}, "thumbnail_image_x_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448571501339361281/bgntEz5z?format=png&name=2048x2048_2_exp", "width": 1732, "height": 1154, "alt": null}}, "thumbnail_image_original": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448571501339361281/bgntEz5z?format=jpg&name=orig", "width": 1732, "height": 1154, "alt": null}}, "card_url": {"type": "STRING", "string_value": "https://t.co/PaHIaW15mm", "scribe_key": "card_url"}}, "card_platform": {"platform": {"device": {"name": "Swift", "version": "12"}, "audience": {"name": "production", "bucket": null}}}}, "lang": "pl", "supplemental_language": null}}
{"object_type": "TweetRaw", "download_datetime": "2021-10-14T13:13:25.036709+02:00", "raw_value": {"created_at": "Thu Oct 14 08:04:21 +0000 2021", "id": 1448560292867321857, "id_str": "1448560292867321857", "full_text": "Wycofuj\u0105 si\u0119?\nPatrzcie, nagle wr\u00f3ci\u0142a grypa i #RSV.Wczoraj w g\u0142. @WiadomosciTVP nic nie by\u0142o o #COVID19,teraz t\u0105 ustaw\u0119 odk\u0142adaj\u0105 na p\u00f3\u017aniej. Co jest grane? Wiedz\u0105,\u017ce b\u0119dzie wojna ze spo\u0142ecze\u0144stwem? \n#koronawirus #niedzielski #PiS #stopSegregacjiSanitarnej\nhttps://t.co/Z9CQk9cRyU", "truncated": false, "display_text_range": [0, 280], "entities": {"hashtags": [{"text": "RSV", "indices": [46, 50]}, {"text": "COVID19", "indices": [95, 103]}, {"text": "koronawirus", "indices": [200, 212]}, {"text": "niedzielski", "indices": [213, 225]}, {"text": "PiS", "indices": [226, 230]}, {"text": "stopSegregacjiSanitarnej", "indices": [231, 256]}], "symbols": [], "user_mentions": [{"screen_name": "WiadomosciTVP", "name": "Wiadomo\u015bciTVP", "id": 831151718, "id_str": "831151718", "indices": [65, 79]}], "urls": [{"url": "https://t.co/Z9CQk9cRyU", "expanded_url": "https://niezalezna.pl/414613-pracodawca-sprawdzi-czy-pracownik-jest-zaszczepiony-mz-projekt-ustawy-czeka-na-ciezsze-czasy", "display_url": "niezalezna.pl/414613-pracoda\u2026", "indices": [257, 280]}]}, "source": "<a href=\"https://mobile.twitter.com\" rel=\"nofollow\">Twitter Web App</a>", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user_id": 2526713370, "user_id_str": "2526713370", "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "reply_count": 0, "quote_count": 0, "conversation_id": 1448560292867321857, "conversation_id_str": "1448560292867321857", "favorited": false, "retweeted": false, "possibly_sensitive": false, "possibly_sensitive_editable": true, "card": {"name": "summary_large_image", "url": "https://t.co/Z9CQk9cRyU", "card_type_url": "http://card-type-url-is-deprecated.invalid", "binding_values": {"vanity_url": {"type": "STRING", "string_value": "niezalezna.pl", "scribe_key": "vanity_url"}, "domain": {"type": "STRING", "string_value": "niezalezna.pl"}, "site": {"type": "USER", "user_value": {"id_str": "241488377", "path": []}, "scribe_key": "publisher_id"}, "title": {"type": "STRING", "string_value": "Pracodawca sprawdzi, czy pracownik jest zaszczepiony? MZ: Projekt ustawy czeka na ci\u0119\u017csze czasy"}, "thumbnail_image_small": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448559885755486209/bohffWrO?format=jpg&name=100x100", "width": 100, "height": 57, "alt": null}}, "thumbnail_image": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448559885755486209/bohffWrO?format=jpg&name=280x150", "width": 262, "height": 150, "alt": null}}, "thumbnail_image_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448559885755486209/bohffWrO?format=jpg&name=800x320_1", "width": 558, "height": 320, "alt": null}}, "thumbnail_image_x_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448559885755486209/bohffWrO?format=png&name=2048x2048_2_exp", "width": 750, "height": 430, "alt": null}}, "thumbnail_image_original": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448559885755486209/bohffWrO?format=jpg&name=orig", "width": 750, "height": 430, "alt": null}}, "summary_photo_image_small": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448559885755486209/bohffWrO?format=jpg&name=386x202", "width": 386, "height": 202, "alt": null}}, "summary_photo_image": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448559885755486209/bohffWrO?format=jpg&name=600x314", "width": 600, "height": 314, "alt": null}}, "summary_photo_image_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448559885755486209/bohffWrO?format=jpg&name=800x419", "width": 750, "height": 393, "alt": null}}, "summary_photo_image_x_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448559885755486209/bohffWrO?format=png&name=2048x2048_2_exp", "width": 750, "height": 430, "alt": null}}, "summary_photo_image_original": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448559885755486209/bohffWrO?format=jpg&name=orig", "width": 750, "height": 430, "alt": null}}, "photo_image_full_size_small": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448559885755486209/bohffWrO?format=jpg&name=386x202", "width": 386, "height": 202, "alt": null}}, "photo_image_full_size": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448559885755486209/bohffWrO?format=jpg&name=600x314", "width": 600, "height": 314, "alt": null}}, "photo_image_full_size_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448559885755486209/bohffWrO?format=jpg&name=800x419", "width": 750, "height": 393, "alt": null}}, "photo_image_full_size_x_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448559885755486209/bohffWrO?format=png&name=2048x2048_2_exp", "width": 750, "height": 430, "alt": null}}, "photo_image_full_size_original": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448559885755486209/bohffWrO?format=jpg&name=orig", "width": 750, "height": 430, "alt": null}}, "card_url": {"type": "STRING", "string_value": "https://t.co/Z9CQk9cRyU", "scribe_key": "card_url"}}, "users": {"241488377": {"id": 241488377, "id_str": "241488377", "name": "Niezalezna.PL", "screen_name": "niezaleznapl", "location": "Warszawa", "description": "Oficjalny profil portalu https://t.co/Es46pNA09V oznacz \ud83d\udc49\ud83c\udffb#NiezaleznaPL\u2757\ufe0f Zapraszamy r\u00f3wnie\u017c na nasz profil na https://t.co/DUZCImzD7b", "url": null, "entities": {"description": {"urls": [{"url": "https://t.co/Es46pNA09V", "expanded_url": "http://www.Niezalezna.PL", "display_url": "Niezalezna.PL", "indices": [25, 48]}, {"url": "https://t.co/DUZCImzD7b", "expanded_url": "http://www.facebook.com/NiezaleznaPL/", "display_url": "facebook.com/NiezaleznaPL/", "indices": [111, 134]}]}}, "protected": false, "followers_count": 62738, "fast_followers_count": 0, "normal_followers_count": 62738, "friends_count": 265, "listed_count": 258, "created_at": "Sat Jan 22 11:16:47 +0000 2011", "favourites_count": 1662, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 150565, "media_count": 3616, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": true, "profile_background_color": "022330", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/892014880705925120/BYmnkCgV_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/892014880705925120/BYmnkCgV_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/241488377/1612425325", "profile_image_extensions_alt_text": null, "profile_image_extensions_media_color": {"palette": [{"rgb": {"red": 247, "green": 247, "blue": 247}, "percentage": 93.32}, {"rgb": {"red": 57, "green": 55, "blue": 56}, "percentage": 6.35}]}, "profile_image_extensions_media_availability": null, "profile_image_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_banner_extensions_alt_text": null, "profile_banner_extensions_media_availability": null, "profile_banner_extensions_media_color": {"palette": [{"rgb": {"red": 116, "green": 192, "blue": 181}, "percentage": 89.88}, {"rgb": {"red": 221, "green": 222, "blue": 227}, "percentage": 4.25}, {"rgb": {"red": 47, "green": 49, "blue": 43}, "percentage": 2.8}, {"rgb": {"red": 118, "green": 119, "blue": 106}, "percentage": 1.29}, {"rgb": {"red": 82, "green": 129, "blue": 121}, "percentage": 0.73}]}, "profile_banner_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_link_color": "0084B4", "profile_sidebar_border_color": "A8C7F7", "profile_sidebar_fill_color": "C0DFEC", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": false, "default_profile_image": false, "pinned_tweet_ids": [], "pinned_tweet_ids_str": [], "has_custom_timelines": true, "can_dm": null, "following": null, "follow_request_sent": null, "notifications": null, "muting": null, "blocking": null, "blocked_by": null, "want_retweets": null, "advertiser_account_type": "promotable_user", "advertiser_account_service_levels": ["analytics"], "profile_interstitial_type": "", "business_profile_state": "none", "translator_type": "none", "withheld_in_countries": [], "followed_by": null, "ext": {"highlightedLabel": {"r": {"ok": {}}, "ttl": -1}}, "require_some_consent": false}}, "card_platform": {"platform": {"device": {"name": "Swift", "version": "12"}, "audience": {"name": "production", "bucket": null}}}}, "lang": "pl", "supplemental_language": null}}
{"object_type": "TweetRaw", "download_datetime": "2021-10-14T13:13:25.036814+02:00", "raw_value": {"created_at": "Thu Oct 14 08:31:12 +0000 2021", "id": 1448567048842383361, "id_str": "1448567048842383361", "full_text": "Mamy 3000 nowych i potwierdzonych przypadk\u00f3w zaka\u017cenia #koronawirus z wojew\u00f3dztw: lubelskiego (671), mazowieckiego (539), podlaskiego (313), \u0142\u00f3dzkiego (167), pomorskiego (161), zachodniopomorskiego (155), podkarpackiego (154), \u015bl\u0105skiego (143), wielkopolskiego (140),", "truncated": false, "display_text_range": [0, 266], "entities": {"hashtags": [{"text": "koronawirus", "indices": [55, 67]}], "symbols": [], "user_mentions": [], "urls": []}, "source": "<a href=\"https://mobile.twitter.com\" rel=\"nofollow\">Twitter Web App</a>", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user_id": 462886126, "user_id_str": "462886126", "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 111, "favorite_count": 838, "reply_count": 219, "quote_count": 134, "conversation_id": 1448567048842383361, "conversation_id_str": "1448567048842383361", "favorited": false, "retweeted": false, "lang": "pl", "supplemental_language": null, "self_thread": {"id": 1448567048842383361, "id_str": "1448567048842383361"}}}
{"object_type": "TweetRaw", "download_datetime": "2021-10-14T13:13:25.036956+02:00", "raw_value": {"created_at": "Thu Oct 14 03:45:27 +0000 2021", "id": 1448495139714969601, "id_str": "1448495139714969601", "full_text": "#WielkaBrytania: Ponad 40 tys. zaka\u017ce\u0144 w ci\u0105gu doby. #COVID19 staje si\u0119 chorob\u0105 dzieci #koronawirus #SARS_CoV_2 \n\nhttps://t.co/Uqu02hCG79", "truncated": false, "display_text_range": [0, 137], "entities": {"hashtags": [{"text": "WielkaBrytania", "indices": [0, 15]}, {"text": "COVID19", "indices": [53, 61]}, {"text": "koronawirus", "indices": [87, 99]}, {"text": "SARS_CoV_2", "indices": [100, 111]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/Uqu02hCG79", "expanded_url": "https://www.rp.pl/ochrona-zdrowia/art19013141-wielka-brytania-ponad-40-tys-zakazen-covid-staje-sie-choroba-dzieci", "display_url": "rp.pl/ochrona-zdrowi\u2026", "indices": [114, 137]}]}, "source": "<a href=\"https://about.twitter.com/products/tweetdeck\" rel=\"nofollow\">TweetDeck</a>", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user_id": 194399035, "user_id_str": "194399035", "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 1, "favorite_count": 2, "reply_count": 1, "quote_count": 2, "conversation_id": 1448495139714969601, "conversation_id_str": "1448495139714969601", "favorited": false, "retweeted": false, "possibly_sensitive": false, "possibly_sensitive_editable": true, "card": {"name": "summary", "url": "https://t.co/Uqu02hCG79", "card_type_url": "http://card-type-url-is-deprecated.invalid", "binding_values": {"vanity_url": {"type": "STRING", "string_value": "rp.pl", "scribe_key": "vanity_url"}, "domain": {"type": "STRING", "string_value": "www.rp.pl"}, "title": {"type": "STRING", "string_value": "Koronawirus. Wielka Brytania: Ponad 40 tys. zaka\u017ce\u0144. Epidemia rozwija si\u0119 tylko w\u015br\u00f3d dzieci"}, "description": {"type": "STRING", "string_value": "W tygodniu ko\u0144cz\u0105cym si\u0119 2 pa\u017adziernika na COVID-19 mia\u0142o cierpie\u0107 ok. 270 tysi\u0119cy uczni\u00f3w szk\u00f3\u0142 \u015brednich."}, "thumbnail_image_small": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448495144618057735/JTg_gPjl?format=jpg&name=100x100_2", "width": 100, "height": 100, "alt": null}}, "thumbnail_image": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448495144618057735/JTg_gPjl?format=jpg&name=144x144_2", "width": 144, "height": 144, "alt": null}}, "thumbnail_image_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448495144618057735/JTg_gPjl?format=jpg&name=420x420_2", "width": 420, "height": 420, "alt": null}}, "thumbnail_image_x_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448495144618057735/JTg_gPjl?format=png&name=2048x2048_2_exp", "width": 1200, "height": 716, "alt": null}}, "thumbnail_image_original": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448495144618057735/JTg_gPjl?format=jpg&name=orig", "width": 1200, "height": 716, "alt": null}}, "card_url": {"type": "STRING", "string_value": "https://t.co/Uqu02hCG79", "scribe_key": "card_url"}}, "card_platform": {"platform": {"device": {"name": "Swift", "version": "12"}, "audience": {"name": "production", "bucket": null}}}}, "lang": "pl", "supplemental_language": null}}
{"object_type": "TweetRaw", "download_datetime": "2021-10-14T13:13:25.037098+02:00", "raw_value": {"created_at": "Thu Oct 14 10:10:43 +0000 2021", "id": 1448592094168236038, "id_str": "1448592094168236038", "full_text": "#Izrael: Doba bez zgonu na #COVID19, ale Izraelczycy nie zdejm\u0105 masek #koronawirus #SARS_CoV_2 \n\nhttps://t.co/IarTuVYbQn", "truncated": false, "display_text_range": [0, 120], "entities": {"hashtags": [{"text": "Izrael", "indices": [0, 7]}, {"text": "COVID19", "indices": [27, 35]}, {"text": "koronawirus", "indices": [70, 82]}, {"text": "SARS_CoV_2", "indices": [83, 94]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/IarTuVYbQn", "expanded_url": "http://www.rp.pl/ochrona-zdrowia/art19014241-izrael-doba-bez-zgonu-na-covid-ale-izraelczycy-nie-zdejma-masek", "display_url": "rp.pl/ochrona-zdrowi\u2026", "indices": [97, 120]}]}, "source": "<a href=\"https://about.twitter.com/products/tweetdeck\" rel=\"nofollow\">TweetDeck</a>", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user_id": 194399035, "user_id_str": "194399035", "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 3, "reply_count": 0, "quote_count": 0, "conversation_id": 1448592094168236038, "conversation_id_str": "1448592094168236038", "favorited": false, "retweeted": false, "possibly_sensitive": false, "possibly_sensitive_editable": true, "card": {"name": "summary", "url": "https://t.co/IarTuVYbQn", "card_type_url": "http://card-type-url-is-deprecated.invalid", "binding_values": {"vanity_url": {"type": "STRING", "string_value": "rp.pl", "scribe_key": "vanity_url"}, "domain": {"type": "STRING", "string_value": "www.rp.pl"}, "title": {"type": "STRING", "string_value": "Koronawirus. Izrael: Doba bez zgonu na COVID, ale Izraelczycy nie zdejm\u0105 masek"}, "description": {"type": "STRING", "string_value": "Dyrektor generalny ministerstwa zdrowia, prof. Nachman Ash podkre\u015bli\u0142, \u017ce cho\u0107 kraj jest na \"dobrej \u015bcie\u017cce\", to jednak przy znoszeniu obostrze\u0144 konieczna jest"}, "thumbnail_image_small": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448592099604041735/PB0S-Lwa?format=jpg&name=100x100_2", "width": 100, "height": 100, "alt": null}}, "thumbnail_image": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448592099604041735/PB0S-Lwa?format=jpg&name=144x144_2", "width": 144, "height": 144, "alt": null}}, "thumbnail_image_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448592099604041735/PB0S-Lwa?format=jpg&name=420x420_2", "width": 420, "height": 420, "alt": null}}, "thumbnail_image_x_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448592099604041735/PB0S-Lwa?format=png&name=2048x2048_2_exp", "width": 1200, "height": 716, "alt": null}}, "thumbnail_image_original": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448592099604041735/PB0S-Lwa?format=jpg&name=orig", "width": 1200, "height": 716, "alt": null}}, "card_url": {"type": "STRING", "string_value": "https://t.co/IarTuVYbQn", "scribe_key": "card_url"}}, "card_platform": {"platform": {"device": {"name": "Swift", "version": "12"}, "audience": {"name": "production", "bucket": null}}}}, "lang": "pl", "supplemental_language": null}}
{"object_type": "TweetRaw", "download_datetime": "2021-10-14T13:13:25.037198+02:00", "raw_value": {"created_at": "Thu Oct 14 06:06:53 +0000 2021", "id": 1448530732490629122, "id_str": "1448530732490629122", "full_text": "\u017byciowa telenowela Bonesa odcinek 571\n#ufc\n#ALBPOL \nBorko\u015b\n#COVID19", "truncated": false, "display_text_range": [0, 67], "entities": {"hashtags": [{"text": "ufc", "indices": [38, 42]}, {"text": "ALBPOL", "indices": [43, 50]}, {"text": "COVID19", "indices": [59, 67]}], "symbols": [], "user_mentions": [], "urls": []}, "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user_id": 1293092925312819207, "user_id_str": "1293092925312819207", "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1448502618158940162, "quoted_status_id_str": "1448502618158940162", "quoted_status_permalink": {"url": "https://t.co/eoarxzL8Bt", "expanded": "https://twitter.com/MMAjunkie/status/1448502618158940162", "display": "twitter.com/MMAjunkie/stat\u2026"}, "retweet_count": 0, "favorite_count": 0, "reply_count": 0, "quote_count": 0, "conversation_id": 1448530732490629122, "conversation_id_str": "1448530732490629122", "favorited": false, "retweeted": false, "lang": "pl", "supplemental_language": null}}
{"object_type": "TweetRaw", "download_datetime": "2021-10-14T13:13:25.037336+02:00", "raw_value": {"created_at": "Thu Oct 14 06:57:30 +0000 2021", "id": 1448543471866945536, "id_str": "1448543471866945536", "full_text": ".@NBA: Szczepisz si\u0119 na #COVID19 albo nie grasz #koronawirus #SARS_CoV_2\n\nhttps://t.co/hYTq4bwEyh", "truncated": false, "display_text_range": [0, 97], "entities": {"hashtags": [{"text": "COVID19", "indices": [24, 32]}, {"text": "koronawirus", "indices": [48, 60]}, {"text": "SARS_CoV_2", "indices": [61, 72]}], "symbols": [], "user_mentions": [{"screen_name": "NBA", "name": "NBA", "id": 19923144, "id_str": "19923144", "indices": [1, 5]}], "urls": [{"url": "https://t.co/hYTq4bwEyh", "expanded_url": "https://www.rp.pl/sport/art19013631-nba-szczepisz-sie-na-covid-albo-nie-grasz", "display_url": "rp.pl/sport/art19013\u2026", "indices": [74, 97]}]}, "source": "<a href=\"https://about.twitter.com/products/tweetdeck\" rel=\"nofollow\">TweetDeck</a>", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user_id": 194399035, "user_id_str": "194399035", "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 1, "reply_count": 2, "quote_count": 0, "conversation_id": 1448543471866945536, "conversation_id_str": "1448543471866945536", "favorited": false, "retweeted": false, "possibly_sensitive": false, "possibly_sensitive_editable": true, "card": {"name": "summary", "url": "https://t.co/hYTq4bwEyh", "card_type_url": "http://card-type-url-is-deprecated.invalid", "binding_values": {"vanity_url": {"type": "STRING", "string_value": "rp.pl", "scribe_key": "vanity_url"}, "domain": {"type": "STRING", "string_value": "www.rp.pl"}, "title": {"type": "STRING", "string_value": "NBA: Szczepisz si\u0119 na COVID, albo nie grasz"}, "description": {"type": "STRING", "string_value": "NBA przyj\u0119\u0142a twarde regu\u0142y gry: nie zaszczepisz si\u0119, mo\u017cesz nie wyj\u015b\u0107 na parkiet i straci\u0107 ogromne pieni\u0105dze. Cz\u0119\u015b\u0107 przeciwnych szczepionkom koszykarskich gwiaz"}, "thumbnail_image_small": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448543477432782848/lmlEHDBV?format=jpg&name=100x100_2", "width": 100, "height": 100, "alt": null}}, "thumbnail_image": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448543477432782848/lmlEHDBV?format=jpg&name=144x144_2", "width": 144, "height": 144, "alt": null}}, "thumbnail_image_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448543477432782848/lmlEHDBV?format=jpg&name=420x420_2", "width": 420, "height": 420, "alt": null}}, "thumbnail_image_x_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448543477432782848/lmlEHDBV?format=png&name=2048x2048_2_exp", "width": 1200, "height": 716, "alt": null}}, "thumbnail_image_original": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448543477432782848/lmlEHDBV?format=jpg&name=orig", "width": 1200, "height": 716, "alt": null}}, "card_url": {"type": "STRING", "string_value": "https://t.co/hYTq4bwEyh", "scribe_key": "card_url"}}, "card_platform": {"platform": {"device": {"name": "Swift", "version": "12"}, "audience": {"name": "production", "bucket": null}}}}, "lang": "pl", "supplemental_language": null}}
{"object_type": "TweetRaw", "download_datetime": "2021-10-14T13:13:25.037607+02:00", "raw_value": {"created_at": "Thu Oct 14 05:02:34 +0000 2021", "id": 1448514546910498816, "id_str": "1448514546910498816", "full_text": "\u201eZmieszanie\u201d r\u00f3\u017cnych szczepionek przeciw #covid19 mo\u017ce by\u0107 korzystne\n#wieszwi\u0119cej #koronawirus #szczepionka\nhttps://t.co/mylwyLVKxk", "truncated": false, "display_text_range": [0, 131], "entities": {"hashtags": [{"text": "covid19", "indices": [41, 49]}, {"text": "wieszwi\u0119cej", "indices": [69, 81]}, {"text": "koronawirus", "indices": [82, 94]}, {"text": "szczepionka", "indices": [95, 107]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/mylwyLVKxk", "expanded_url": "https://www.tvp.info/56367186/usa-naukowcy-zbadali-mozliwosc-zmieszania-szczepionek-przeciwko-covid-19", "display_url": "tvp.info/56367186/usa-n\u2026", "indices": [108, 131]}]}, "source": "<a href=\"https://mobile.twitter.com\" rel=\"nofollow\">Twitter Web App</a>", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user_id": 47295451, "user_id_str": "47295451", "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 4, "favorite_count": 7, "reply_count": 16, "quote_count": 2, "conversation_id": 1448514546910498816, "conversation_id_str": "1448514546910498816", "favorited": false, "retweeted": false, "possibly_sensitive": false, "possibly_sensitive_editable": true, "card": {"name": "summary_large_image", "url": "https://t.co/mylwyLVKxk", "card_type_url": "http://card-type-url-is-deprecated.invalid", "binding_values": {"vanity_url": {"type": "STRING", "string_value": "tvp.info", "scribe_key": "vanity_url"}, "domain": {"type": "STRING", "string_value": "www.tvp.info"}, "site": {"type": "USER", "user_value": {"id_str": "47295451", "path": []}, "scribe_key": "publisher_id"}, "title": {"type": "STRING", "string_value": "\u201eZmieszanie\u201d r\u00f3\u017cnych szczepionek przeciw COVID-19 mo\u017ce by\u0107 korzystne"}, "description": {"type": "STRING", "string_value": "Zaszczepieni pierwszy raz mog\u0105 skorzysta\u0107 z przyj\u0119cia dawki przypominaj\u0105cej innej szczepionki."}, "thumbnail_image_small": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448514375610941440/hJ_nswM5?format=jpg&name=144x144", "width": 144, "height": 81, "alt": null}}, "thumbnail_image": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448514375610941440/hJ_nswM5?format=jpg&name=280x150", "width": 267, "height": 150, "alt": null}}, "thumbnail_image_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448514375610941440/hJ_nswM5?format=jpg&name=800x320_1", "width": 569, "height": 320, "alt": null}}, "thumbnail_image_x_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448514375610941440/hJ_nswM5?format=png&name=2048x2048_2_exp", "width": 1280, "height": 720, "alt": null}}, "thumbnail_image_original": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448514375610941440/hJ_nswM5?format=jpg&name=orig", "width": 1280, "height": 720, "alt": null}}, "summary_photo_image_small": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448514375610941440/hJ_nswM5?format=jpg&name=386x202", "width": 386, "height": 202, "alt": null}}, "summary_photo_image": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448514375610941440/hJ_nswM5?format=jpg&name=600x314", "width": 600, "height": 314, "alt": null}}, "summary_photo_image_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448514375610941440/hJ_nswM5?format=jpg&name=800x419", "width": 800, "height": 419, "alt": null}}, "summary_photo_image_x_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448514375610941440/hJ_nswM5?format=png&name=2048x2048_2_exp", "width": 1280, "height": 720, "alt": null}}, "summary_photo_image_original": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448514375610941440/hJ_nswM5?format=jpg&name=orig", "width": 1280, "height": 720, "alt": null}}, "photo_image_full_size_small": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448514375610941440/hJ_nswM5?format=jpg&name=386x202", "width": 386, "height": 202, "alt": null}}, "photo_image_full_size": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448514375610941440/hJ_nswM5?format=jpg&name=600x314", "width": 600, "height": 314, "alt": null}}, "photo_image_full_size_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448514375610941440/hJ_nswM5?format=jpg&name=800x419", "width": 800, "height": 419, "alt": null}}, "photo_image_full_size_x_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448514375610941440/hJ_nswM5?format=png&name=2048x2048_2_exp", "width": 1280, "height": 720, "alt": null}}, "photo_image_full_size_original": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448514375610941440/hJ_nswM5?format=jpg&name=orig", "width": 1280, "height": 720, "alt": null}}, "card_url": {"type": "STRING", "string_value": "https://t.co/mylwyLVKxk", "scribe_key": "card_url"}}, "users": {"47295451": {"id": 47295451, "id_str": "47295451", "name": "tvp.info \ud83c\uddf5\ud83c\uddf1", "screen_name": "tvp_info", "location": "Warszawa", "description": "https://t.co/HZLQdgiRta #wieszwiecej - naj\u015bwie\u017csze informacje z kraju i ze \u015bwiata. Telefon interwencyjny: 601600100", "url": null, "entities": {"description": {"urls": [{"url": "https://t.co/HZLQdgiRta", "expanded_url": "http://tvp.info", "display_url": "tvp.info", "indices": [0, 23]}]}}, "protected": false, "followers_count": 720026, "fast_followers_count": 0, "normal_followers_count": 720026, "friends_count": 1872, "listed_count": 1067, "created_at": "Mon Jun 15 09:00:38 +0000 2009", "favourites_count": 1043, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": true, "statuses_count": 273410, "media_count": 38962, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "FFFFFF", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme17/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme17/bg.gif", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/974713408502235137/TPTolZw8_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/974713408502235137/TPTolZw8_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/47295451/1633810932", "profile_image_extensions_alt_text": null, "profile_image_extensions_media_availability": null, "profile_image_extensions_media_color": {"palette": [{"rgb": {"red": 255, "green": 255, "blue": 255}, "percentage": 89.91}, {"rgb": {"red": 187, "green": 19, "blue": 54}, "percentage": 7.68}, {"rgb": {"red": 224, "green": 143, "blue": 158}, "percentage": 1.46}, {"rgb": {"red": 211, "green": 104, "blue": 124}, "percentage": 0.58}, {"rgb": {"red": 117, "green": 117, "blue": 119}, "percentage": 0.33}]}, "profile_image_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_banner_extensions_alt_text": null, "profile_banner_extensions_media_availability": null, "profile_banner_extensions_media_color": {"palette": [{"rgb": {"red": 31, "green": 28, "blue": 23}, "percentage": 82.36}, {"rgb": {"red": 234, "green": 234, "blue": 233}, "percentage": 12.17}, {"rgb": {"red": 124, "green": 122, "blue": 117}, "percentage": 2.51}, {"rgb": {"red": 54, "green": 23, "blue": 20}, "percentage": 0.64}, {"rgb": {"red": 169, "green": 79, "blue": 94}, "percentage": 0.22}]}, "profile_banner_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_link_color": "E32424", "profile_sidebar_border_color": "FFFFFF", "profile_sidebar_fill_color": "E6F6F9", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": false, "default_profile_image": false, "pinned_tweet_ids": [1447888528323452930], "pinned_tweet_ids_str": ["1447888528323452930"], "has_custom_timelines": true, "can_dm": null, "following": null, "follow_request_sent": null, "notifications": null, "muting": null, "blocking": null, "blocked_by": null, "want_retweets": null, "advertiser_account_type": "promotable_user", "advertiser_account_service_levels": ["reseller", "media_studio"], "profile_interstitial_type": "", "business_profile_state": "none", "translator_type": "none", "withheld_in_countries": [], "followed_by": null, "ext": {"highlightedLabel": {"r": {"ok": {}}, "ttl": -1}}, "require_some_consent": false}}, "card_platform": {"platform": {"device": {"name": "Swift", "version": "12"}, "audience": {"name": "production", "bucket": null}}}}, "lang": "pl", "supplemental_language": null}}
{"object_type": "TweetRaw", "download_datetime": "2021-10-14T13:13:25.037775+02:00", "raw_value": {"created_at": "Thu Oct 14 08:58:35 +0000 2021", "id": 1448573940713070596, "id_str": "1448573940713070596", "full_text": "Prze Pa\u0144stwa jadziem #COVID19 https://t.co/aOKWnZNvx4", "truncated": false, "display_text_range": [0, 29], "entities": {"hashtags": [{"text": "COVID19", "indices": [21, 29]}], "symbols": [], "user_mentions": [], "urls": [], "media": [{"id": 1448573932840366080, "id_str": "1448573932840366080", "indices": [30, 53], "media_url": "http://pbs.twimg.com/tweet_video_thumb/FBpeUSnXMAAqm1w.jpg", "media_url_https": "https://pbs.twimg.com/tweet_video_thumb/FBpeUSnXMAAqm1w.jpg", "url": "https://t.co/aOKWnZNvx4", "display_url": "pic.twitter.com/aOKWnZNvx4", "expanded_url": "https://twitter.com/zaspany_34/status/1448573940713070596/photo/1", "type": "photo", "original_info": {"width": 300, "height": 224}, "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 300, "h": 224, "resize": "fit"}, "small": {"w": 300, "h": 224, "resize": "fit"}, "large": {"w": 300, "h": 224, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 1448573932840366080, "id_str": "1448573932840366080", "indices": [30, 53], "media_url": "http://pbs.twimg.com/tweet_video_thumb/FBpeUSnXMAAqm1w.jpg", "media_url_https": "https://pbs.twimg.com/tweet_video_thumb/FBpeUSnXMAAqm1w.jpg", "url": "https://t.co/aOKWnZNvx4", "display_url": "pic.twitter.com/aOKWnZNvx4", "expanded_url": "https://twitter.com/zaspany_34/status/1448573940713070596/photo/1", "type": "animated_gif", "original_info": {"width": 300, "height": 224}, "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 300, "h": 224, "resize": "fit"}, "small": {"w": 300, "h": 224, "resize": "fit"}, "large": {"w": 300, "h": 224, "resize": "fit"}}, "video_info": {"aspect_ratio": [75, 56], "variants": [{"bitrate": 0, "content_type": "video/mp4", "url": "https://video.twimg.com/tweet_video/FBpeUSnXMAAqm1w.mp4"}]}, "media_key": "16_1448573932840366080", "ext_alt_text": "Funny Dance GIF", "ext_media_color": {"palette": [{"rgb": {"red": 118, "green": 108, "blue": 97}, "percentage": 65.38}, {"rgb": {"red": 67, "green": 30, "blue": 27}, "percentage": 30.45}, {"rgb": {"red": 44, "green": 32, "blue": 23}, "percentage": 2.84}, {"rgb": {"red": 123, "green": 103, "blue": 94}, "percentage": 0.85}, {"rgb": {"red": 94, "green": 35, "blue": 37}, "percentage": 0.45}]}, "ext_media_availability": {"status": "available"}, "ext": {"mediaStats": {"r": "Missing", "ttl": -1}}}]}, "source": "<a href=\"https://mobile.twitter.com\" rel=\"nofollow\">Twitter Web App</a>", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user_id": 1088484911818915840, "user_id_str": "1088484911818915840", "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1448567048842383361, "quoted_status_id_str": "1448567048842383361", "quoted_status_permalink": {"url": "https://t.co/6ylZUUy4qr", "expanded": "https://twitter.com/MZ_GOV_PL/status/1448567048842383361", "display": "twitter.com/MZ_GOV_PL/stat\u2026"}, "retweet_count": 0, "favorite_count": 0, "reply_count": 0, "quote_count": 0, "conversation_id": 1448573940713070596, "conversation_id_str": "1448573940713070596", "favorited": false, "retweeted": false, "possibly_sensitive": false, "possibly_sensitive_editable": true, "lang": "pl", "supplemental_language": null}}
{"object_type": "TweetRaw", "download_datetime": "2021-10-14T13:13:25.037961+02:00", "raw_value": {"created_at": "Thu Oct 14 10:00:14 +0000 2021", "id": 1448589455531577348, "id_str": "1448589455531577348", "full_text": "Dzi\u015b rekord zaka\u017ce\u0144 czwartej fali\n#wieszwi\u0119cej #koronawirus #covid19\nCzytaj wi\u0119cej: https://t.co/LjkPg8ykYy https://t.co/2WRc6R8neV", "truncated": false, "display_text_range": [0, 107], "entities": {"hashtags": [{"text": "wieszwi\u0119cej", "indices": [34, 46]}, {"text": "koronawirus", "indices": [47, 59]}, {"text": "covid19", "indices": [60, 68]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/LjkPg8ykYy", "expanded_url": "https://www.tvp.info/56374223/koronawirus-w-polsce-nowe-dane-ministerstwa-zdrowia-z-dzisiaj-14-pazdziernika-czwartek-nowe-przypadki-zakazenia-statystyki-covid-19-liczba-zgonow-14102021", "display_url": "tvp.info/56374223/koron\u2026", "indices": [84, 107]}], "media": [{"id": 1448588350387068929, "id_str": "1448588350387068929", "indices": [108, 131], "media_url": "http://pbs.twimg.com/amplify_video_thumb/1448588350387068929/img/JpyyG_XlPU2eBJ9q.jpg", "media_url_https": "https://pbs.twimg.com/amplify_video_thumb/1448588350387068929/img/JpyyG_XlPU2eBJ9q.jpg", "url": "https://t.co/2WRc6R8neV", "display_url": "pic.twitter.com/2WRc6R8neV", "expanded_url": "https://twitter.com/tvp_info/status/1448589455531577348/video/1", "type": "photo", "original_info": {"width": 1280, "height": 720}, "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 1200, "h": 675, "resize": "fit"}, "small": {"w": 680, "h": 383, "resize": "fit"}, "large": {"w": 1280, "h": 720, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 1448588350387068929, "id_str": "1448588350387068929", "indices": [108, 131], "media_url": "http://pbs.twimg.com/amplify_video_thumb/1448588350387068929/img/JpyyG_XlPU2eBJ9q.jpg", "media_url_https": "https://pbs.twimg.com/amplify_video_thumb/1448588350387068929/img/JpyyG_XlPU2eBJ9q.jpg", "url": "https://t.co/2WRc6R8neV", "display_url": "pic.twitter.com/2WRc6R8neV", "expanded_url": "https://twitter.com/tvp_info/status/1448589455531577348/video/1", "type": "video", "original_info": {"width": 1280, "height": 720}, "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 1200, "h": 675, "resize": "fit"}, "small": {"w": 680, "h": 383, "resize": "fit"}, "large": {"w": 1280, "h": 720, "resize": "fit"}}, "video_info": {"aspect_ratio": [16, 9], "duration_millis": 54440, "variants": [{"bitrate": 2176000, "content_type": "video/mp4", "url": "https://video.twimg.com/amplify_video/1448588350387068929/vid/1280x720/FhWuniLOCH4iMtkf.mp4?tag=14"}, {"content_type": "application/x-mpegURL", "url": "https://video.twimg.com/amplify_video/1448588350387068929/pl/Jh8DZ4FLEWIoMN3J.m3u8?tag=14"}, {"bitrate": 288000, "content_type": "video/mp4", "url": "https://video.twimg.com/amplify_video/1448588350387068929/vid/480x270/foyAVB2PfQLhiC2w.mp4?tag=14"}, {"bitrate": 832000, "content_type": "video/mp4", "url": "https://video.twimg.com/amplify_video/1448588350387068929/vid/640x360/SXP0-16QMsKRkBmU.mp4?tag=14"}]}, "media_key": "13_1448588350387068929", "ext_alt_text": null, "ext_media_availability": {"status": "available"}, "ext_media_color": {"palette": [{"rgb": {"red": 183, "green": 207, "blue": 232}, "percentage": 37.1}, {"rgb": {"red": 123, "green": 130, "blue": 123}, "percentage": 17.25}, {"rgb": {"red": 188, "green": 189, "blue": 168}, "percentage": 14.57}, {"rgb": {"red": 16, "green": 43, "blue": 63}, "percentage": 8.16}, {"rgb": {"red": 163, "green": 201, "blue": 245}, "percentage": 3.8}]}, "ext": {"mediaStats": {"r": {"ok": {"viewCount": "515"}}, "ttl": -1}}, "additional_media_info": {"title": "", "description": "", "embeddable": true, "monetizable": false}}]}, "source": "<a href=\"https://studio.twitter.com\" rel=\"nofollow\">Twitter Media Studio</a>", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user_id": 47295451, "user_id_str": "47295451", "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 1, "favorite_count": 6, "reply_count": 3, "quote_count": 1, "conversation_id": 1448589455531577348, "conversation_id_str": "1448589455531577348", "favorited": false, "retweeted": false, "possibly_sensitive": false, "possibly_sensitive_editable": true, "lang": "pl", "supplemental_language": null}}
{"object_type": "TweetRaw", "download_datetime": "2021-10-14T13:13:25.038231+02:00", "raw_value": {"created_at": "Thu Oct 14 08:32:35 +0000 2021", "id": 1448567397477191680, "id_str": "1448567397477191680", "full_text": "Rekord liczby zaka\u017ce\u0144 IV fali koronawirusa\n#wieszwi\u0119cej #koronawirus #covid19\nhttps://t.co/LjkPg8ykYy", "truncated": false, "display_text_range": [0, 101], "entities": {"hashtags": [{"text": "wieszwi\u0119cej", "indices": [43, 55]}, {"text": "koronawirus", "indices": [56, 68]}, {"text": "covid19", "indices": [69, 77]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/LjkPg8ykYy", "expanded_url": "https://www.tvp.info/56374223/koronawirus-w-polsce-nowe-dane-ministerstwa-zdrowia-z-dzisiaj-14-pazdziernika-czwartek-nowe-przypadki-zakazenia-statystyki-covid-19-liczba-zgonow-14102021", "display_url": "tvp.info/56374223/koron\u2026", "indices": [78, 101]}]}, "source": "<a href=\"https://mobile.twitter.com\" rel=\"nofollow\">Twitter Web App</a>", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user_id": 47295451, "user_id_str": "47295451", "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 3, "favorite_count": 2, "reply_count": 6, "quote_count": 0, "conversation_id": 1448567397477191680, "conversation_id_str": "1448567397477191680", "favorited": false, "retweeted": false, "possibly_sensitive": false, "possibly_sensitive_editable": true, "card": {"name": "summary_large_image", "url": "https://t.co/LjkPg8ykYy", "card_type_url": "http://card-type-url-is-deprecated.invalid", "binding_values": {"vanity_url": {"type": "STRING", "string_value": "tvp.info", "scribe_key": "vanity_url"}, "domain": {"type": "STRING", "string_value": "www.tvp.info"}, "site": {"type": "USER", "user_value": {"id_str": "47295451", "path": []}, "scribe_key": "publisher_id"}, "title": {"type": "STRING", "string_value": "Raport MZ z 14 pa\u017adziernika 2021. Rekord zaka\u017ce\u0144 czwartej fali"}, "description": {"type": "STRING", "string_value": "Zobacz, gdzie odnotowano najwi\u0119cej przypadk\u00f3w."}, "thumbnail_image_small": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448567261812428809/L3ksEaZP?format=jpg&name=144x144", "width": 144, "height": 81, "alt": null}}, "thumbnail_image": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448567261812428809/L3ksEaZP?format=jpg&name=280x150", "width": 267, "height": 150, "alt": null}}, "thumbnail_image_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448567261812428809/L3ksEaZP?format=jpg&name=800x320_1", "width": 569, "height": 320, "alt": null}}, "thumbnail_image_x_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448567261812428809/L3ksEaZP?format=png&name=2048x2048_2_exp", "width": 1280, "height": 720, "alt": null}}, "thumbnail_image_original": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448567261812428809/L3ksEaZP?format=jpg&name=orig", "width": 1280, "height": 720, "alt": null}}, "summary_photo_image_small": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448567261812428809/L3ksEaZP?format=jpg&name=386x202", "width": 386, "height": 202, "alt": null}}, "summary_photo_image": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448567261812428809/L3ksEaZP?format=jpg&name=600x314", "width": 600, "height": 314, "alt": null}}, "summary_photo_image_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448567261812428809/L3ksEaZP?format=jpg&name=800x419", "width": 800, "height": 419, "alt": null}}, "summary_photo_image_x_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448567261812428809/L3ksEaZP?format=png&name=2048x2048_2_exp", "width": 1280, "height": 720, "alt": null}}, "summary_photo_image_original": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448567261812428809/L3ksEaZP?format=jpg&name=orig", "width": 1280, "height": 720, "alt": null}}, "photo_image_full_size_small": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448567261812428809/L3ksEaZP?format=jpg&name=386x202", "width": 386, "height": 202, "alt": null}}, "photo_image_full_size": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448567261812428809/L3ksEaZP?format=jpg&name=600x314", "width": 600, "height": 314, "alt": null}}, "photo_image_full_size_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448567261812428809/L3ksEaZP?format=jpg&name=800x419", "width": 800, "height": 419, "alt": null}}, "photo_image_full_size_x_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448567261812428809/L3ksEaZP?format=png&name=2048x2048_2_exp", "width": 1280, "height": 720, "alt": null}}, "photo_image_full_size_original": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448567261812428809/L3ksEaZP?format=jpg&name=orig", "width": 1280, "height": 720, "alt": null}}, "card_url": {"type": "STRING", "string_value": "https://t.co/LjkPg8ykYy", "scribe_key": "card_url"}}, "users": {"47295451": {"id": 47295451, "id_str": "47295451", "name": "tvp.info \ud83c\uddf5\ud83c\uddf1", "screen_name": "tvp_info", "location": "Warszawa", "description": "https://t.co/HZLQdgiRta #wieszwiecej - naj\u015bwie\u017csze informacje z kraju i ze \u015bwiata. Telefon interwencyjny: 601600100", "url": null, "entities": {"description": {"urls": [{"url": "https://t.co/HZLQdgiRta", "expanded_url": "http://tvp.info", "display_url": "tvp.info", "indices": [0, 23]}]}}, "protected": false, "followers_count": 720026, "fast_followers_count": 0, "normal_followers_count": 720026, "friends_count": 1872, "listed_count": 1067, "created_at": "Mon Jun 15 09:00:38 +0000 2009", "favourites_count": 1043, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": true, "statuses_count": 273410, "media_count": 38962, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "FFFFFF", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme17/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme17/bg.gif", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/974713408502235137/TPTolZw8_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/974713408502235137/TPTolZw8_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/47295451/1633810932", "profile_image_extensions_alt_text": null, "profile_image_extensions_media_availability": null, "profile_image_extensions_media_color": {"palette": [{"rgb": {"red": 255, "green": 255, "blue": 255}, "percentage": 89.91}, {"rgb": {"red": 187, "green": 19, "blue": 54}, "percentage": 7.68}, {"rgb": {"red": 224, "green": 143, "blue": 158}, "percentage": 1.46}, {"rgb": {"red": 211, "green": 104, "blue": 124}, "percentage": 0.58}, {"rgb": {"red": 117, "green": 117, "blue": 119}, "percentage": 0.33}]}, "profile_image_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_banner_extensions_alt_text": null, "profile_banner_extensions_media_availability": null, "profile_banner_extensions_media_color": {"palette": [{"rgb": {"red": 31, "green": 28, "blue": 23}, "percentage": 82.36}, {"rgb": {"red": 234, "green": 234, "blue": 233}, "percentage": 12.17}, {"rgb": {"red": 124, "green": 122, "blue": 117}, "percentage": 2.51}, {"rgb": {"red": 54, "green": 23, "blue": 20}, "percentage": 0.64}, {"rgb": {"red": 169, "green": 79, "blue": 94}, "percentage": 0.22}]}, "profile_banner_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_link_color": "E32424", "profile_sidebar_border_color": "FFFFFF", "profile_sidebar_fill_color": "E6F6F9", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": false, "default_profile_image": false, "pinned_tweet_ids": [1447888528323452930], "pinned_tweet_ids_str": ["1447888528323452930"], "has_custom_timelines": true, "can_dm": null, "following": null, "follow_request_sent": null, "notifications": null, "muting": null, "blocking": null, "blocked_by": null, "want_retweets": null, "advertiser_account_type": "promotable_user", "advertiser_account_service_levels": ["reseller", "media_studio"], "profile_interstitial_type": "", "business_profile_state": "none", "translator_type": "none", "withheld_in_countries": [], "followed_by": null, "ext": {"highlightedLabel": {"r": {"ok": {}}, "ttl": -1}}, "require_some_consent": false}}, "card_platform": {"platform": {"device": {"name": "Swift", "version": "12"}, "audience": {"name": "production", "bucket": null}}}}, "lang": "pl", "supplemental_language": null}}
{"object_type": "TweetRaw", "download_datetime": "2021-10-14T13:13:25.038373+02:00", "raw_value": {"created_at": "Thu Oct 14 08:36:04 +0000 2021", "id": 1448568273067511809, "id_str": "1448568273067511809", "full_text": "Kolejny rekord zaka\u017ce\u0144. Mamy 3 tys. nowych przypadk\u00f3w #koronawirus #COVID19 \n\nhttps://t.co/HpXlnly8Og", "truncated": false, "display_text_range": [0, 101], "entities": {"hashtags": [{"text": "koronawirus", "indices": [54, 66]}, {"text": "COVID19", "indices": [67, 75]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/HpXlnly8Og", "expanded_url": "https://cowzdrowiu.pl/aktualnosci/post/kolejny-rekord-zakazen-mamy-3-tys-nowych-przypadkow", "display_url": "cowzdrowiu.pl/aktualnosci/po\u2026", "indices": [78, 101]}]}, "source": "<a href=\"https://mobile.twitter.com\" rel=\"nofollow\">Twitter Web App</a>", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user_id": 1182033067663331329, "user_id_str": "1182033067663331329", "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 1, "favorite_count": 0, "reply_count": 0, "quote_count": 0, "conversation_id": 1448568273067511809, "conversation_id_str": "1448568273067511809", "favorited": false, "retweeted": false, "possibly_sensitive": false, "possibly_sensitive_editable": true, "card": {"name": "summary", "url": "https://t.co/HpXlnly8Og", "card_type_url": "http://card-type-url-is-deprecated.invalid", "binding_values": {"vanity_url": {"type": "STRING", "string_value": "cowzdrowiu.pl", "scribe_key": "vanity_url"}, "domain": {"type": "STRING", "string_value": "cowzdrowiu.pl"}, "title": {"type": "STRING", "string_value": "Kolejny rekord zaka\u017ce\u0144. Mamy 3 tys. nowych przypadk\u00f3w"}, "description": {"type": "STRING", "string_value": "Mamy 3000 nowych i potwierdzonych przypadk\u00f3w zaka\u017cenia koronawirusem. - poda\u0142 w czwartek resorty zdrowia."}, "thumbnail_image_small": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448568221389447170/pXYhxJk2?format=jpg&name=100x100_2", "width": 100, "height": 100, "alt": null}}, "thumbnail_image": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448568221389447170/pXYhxJk2?format=jpg&name=144x144_2", "width": 144, "height": 144, "alt": null}}, "thumbnail_image_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448568221389447170/pXYhxJk2?format=jpg&name=420x420_2", "width": 420, "height": 420, "alt": null}}, "thumbnail_image_x_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448568221389447170/pXYhxJk2?format=png&name=2048x2048_2_exp", "width": 2048, "height": 1153, "alt": null}}, "thumbnail_image_original": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448568221389447170/pXYhxJk2?format=jpg&name=orig", "width": 2500, "height": 1407, "alt": null}}, "card_url": {"type": "STRING", "string_value": "https://t.co/HpXlnly8Og", "scribe_key": "card_url"}}, "card_platform": {"platform": {"device": {"name": "Swift", "version": "12"}, "audience": {"name": "production", "bucket": null}}}}, "lang": "pl", "supplemental_language": null}}
{"object_type": "TweetRaw", "download_datetime": "2021-10-14T13:13:25.038515+02:00", "raw_value": {"created_at": "Thu Oct 14 02:48:55 +0000 2021", "id": 1448480911641694210, "id_str": "1448480911641694210", "full_text": "#Japonia: Rekordowa liczba samob\u00f3jstw dzieci w pierwszym roku #pandemia #COVID19 #koronawirus #SARS_CoV_2 \n\nhttps://t.co/rXY9VAuu5a", "truncated": false, "display_text_range": [0, 131], "entities": {"hashtags": [{"text": "Japonia", "indices": [0, 8]}, {"text": "pandemia", "indices": [62, 71]}, {"text": "COVID19", "indices": [72, 80]}, {"text": "koronawirus", "indices": [81, 93]}, {"text": "SARS_CoV_2", "indices": [94, 105]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/rXY9VAuu5a", "expanded_url": "https://www.rp.pl/polityka/art19013081-japonia-rekordowa-liczba-samobojstw-dzieci-w-pierwszym-roku-pandemii", "display_url": "rp.pl/polityka/art19\u2026", "indices": [108, 131]}]}, "source": "<a href=\"https://about.twitter.com/products/tweetdeck\" rel=\"nofollow\">TweetDeck</a>", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user_id": 194399035, "user_id_str": "194399035", "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 6, "favorite_count": 4, "reply_count": 1, "quote_count": 0, "conversation_id": 1448480911641694210, "conversation_id_str": "1448480911641694210", "favorited": false, "retweeted": false, "possibly_sensitive": false, "possibly_sensitive_editable": true, "card": {"name": "summary", "url": "https://t.co/rXY9VAuu5a", "card_type_url": "http://card-type-url-is-deprecated.invalid", "binding_values": {"vanity_url": {"type": "STRING", "string_value": "rp.pl", "scribe_key": "vanity_url"}, "domain": {"type": "STRING", "string_value": "www.rp.pl"}, "title": {"type": "STRING", "string_value": "Koronawirus. Japonia: Rekordowa liczba samob\u00f3jstw dzieci w pierwszym roku pandemii"}, "description": {"type": "STRING", "string_value": "W ostatnich dziesi\u0119ciu latach liczba samob\u00f3jstw Japonii spada\u0142a co roku, a w ci\u0105gu 15 lat zmniejszy\u0142a si\u0119 o 40 proc. Jednak w 2020 roku, gdy wybuch\u0142a pandemia k"}, "thumbnail_image_small": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448480916498681857/Gvdv-C0M?format=jpg&name=100x100_2", "width": 100, "height": 100, "alt": null}}, "thumbnail_image": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448480916498681857/Gvdv-C0M?format=jpg&name=144x144_2", "width": 144, "height": 144, "alt": null}}, "thumbnail_image_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448480916498681857/Gvdv-C0M?format=jpg&name=420x420_2", "width": 420, "height": 420, "alt": null}}, "thumbnail_image_x_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448480916498681857/Gvdv-C0M?format=png&name=2048x2048_2_exp", "width": 1200, "height": 716, "alt": null}}, "thumbnail_image_original": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448480916498681857/Gvdv-C0M?format=jpg&name=orig", "width": 1200, "height": 716, "alt": null}}, "card_url": {"type": "STRING", "string_value": "https://t.co/rXY9VAuu5a", "scribe_key": "card_url"}}, "card_platform": {"platform": {"device": {"name": "Swift", "version": "12"}, "audience": {"name": "production", "bucket": null}}}}, "lang": "pl", "supplemental_language": null}}
{"object_type": "TweetRaw", "download_datetime": "2021-10-14T13:13:25.038684+02:00", "raw_value": {"created_at": "Thu Oct 14 08:00:00 +0000 2021", "id": 1448559199374434305, "id_str": "1448559199374434305", "full_text": "Ka\u017cdy organizm inaczej przechodzi r\u00f3\u017cnego rodzaju choroby, dlatego ma\u0142o kto potrafi odr\u00f3\u017cni\u0107 gryp\u0119 od #COVID19 . https://t.co/3tspxAQhPt", "truncated": false, "display_text_range": [0, 136], "entities": {"hashtags": [{"text": "COVID19", "indices": [102, 110]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/3tspxAQhPt", "expanded_url": "https://poznan.tvp.pl/56370700/jak-odroznic-infekcje-koronawirusowa-od-infekcji-grypowej", "display_url": "poznan.tvp.pl/56370700/jak-o\u2026", "indices": [113, 136]}]}, "source": "<a href=\"https://mobile.twitter.com\" rel=\"nofollow\">Twitter Web App</a>", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user_id": 702976181772132361, "user_id_str": "702976181772132361", "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 1, "reply_count": 0, "quote_count": 0, "conversation_id": 1448559199374434305, "conversation_id_str": "1448559199374434305", "favorited": false, "retweeted": false, "possibly_sensitive": false, "possibly_sensitive_editable": true, "card": {"name": "summary_large_image", "url": "https://t.co/3tspxAQhPt", "card_type_url": "http://card-type-url-is-deprecated.invalid", "binding_values": {"vanity_url": {"type": "STRING", "string_value": "poznan.tvp.pl", "scribe_key": "vanity_url"}, "domain": {"type": "STRING", "string_value": "poznan.tvp.pl"}, "title": {"type": "STRING", "string_value": "Jak odr\u00f3\u017cni\u0107 infekcj\u0119 koronawirusow\u0105 od infekcji grypowej?"}, "description": {"type": "STRING", "string_value": "Szczyt sezonu grypowego i czwarta fala zaka\u017ce\u0144 COVID-19 wci\u0105\u017c przed nami. Infekcje s\u0105 do siebie podobne, ale ich skutki diametralnie odmienne. Specjali\u015bci apeluj\u0105 \u2013 je\u015bli nie mamy pewno\u015bci co nam..."}, "thumbnail_image_small": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448532989428867073/KaT89cwI?format=jpg&name=144x144", "width": 144, "height": 81, "alt": null}}, "thumbnail_image": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448532989428867073/KaT89cwI?format=jpg&name=280x150", "width": 267, "height": 150, "alt": null}}, "thumbnail_image_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448532989428867073/KaT89cwI?format=jpg&name=800x320_1", "width": 569, "height": 320, "alt": null}}, "thumbnail_image_x_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448532989428867073/KaT89cwI?format=png&name=2048x2048_2_exp", "width": 900, "height": 506, "alt": null}}, "thumbnail_image_original": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448532989428867073/KaT89cwI?format=jpg&name=orig", "width": 900, "height": 506, "alt": null}}, "summary_photo_image_small": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448532989428867073/KaT89cwI?format=jpg&name=386x202", "width": 386, "height": 202, "alt": null}}, "summary_photo_image": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448532989428867073/KaT89cwI?format=jpg&name=600x314", "width": 600, "height": 314, "alt": null}}, "summary_photo_image_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448532989428867073/KaT89cwI?format=jpg&name=800x419", "width": 800, "height": 419, "alt": null}}, "summary_photo_image_x_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448532989428867073/KaT89cwI?format=png&name=2048x2048_2_exp", "width": 900, "height": 506, "alt": null}}, "summary_photo_image_original": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448532989428867073/KaT89cwI?format=jpg&name=orig", "width": 900, "height": 506, "alt": null}}, "photo_image_full_size_small": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448532989428867073/KaT89cwI?format=jpg&name=386x202", "width": 386, "height": 202, "alt": null}}, "photo_image_full_size": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448532989428867073/KaT89cwI?format=jpg&name=600x314", "width": 600, "height": 314, "alt": null}}, "photo_image_full_size_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448532989428867073/KaT89cwI?format=jpg&name=800x419", "width": 800, "height": 419, "alt": null}}, "photo_image_full_size_x_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448532989428867073/KaT89cwI?format=png&name=2048x2048_2_exp", "width": 900, "height": 506, "alt": null}}, "photo_image_full_size_original": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448532989428867073/KaT89cwI?format=jpg&name=orig", "width": 900, "height": 506, "alt": null}}, "card_url": {"type": "STRING", "string_value": "https://t.co/3tspxAQhPt", "scribe_key": "card_url"}}, "card_platform": {"platform": {"device": {"name": "Swift", "version": "12"}, "audience": {"name": "production", "bucket": null}}}}, "lang": "pl", "supplemental_language": null}}
{"object_type": "TweetRaw", "download_datetime": "2021-10-14T13:13:25.039218+02:00", "raw_value": {"created_at": "Thu Oct 14 03:12:17 +0000 2021", "id": 1448486790390763521, "id_str": "1448486790390763521", "full_text": ".@WHO: To mo\u017ce by\u0107 ostatnia szansa na odkrycie pochodzenia #koronawirus.a #SARS_CoV_2 #COVID19 \n\nhttps://t.co/n5noMFKLVo", "truncated": false, "display_text_range": [0, 120], "entities": {"hashtags": [{"text": "koronawirus", "indices": [59, 71]}, {"text": "SARS_CoV_2", "indices": [74, 85]}, {"text": "COVID19", "indices": [86, 94]}], "symbols": [], "user_mentions": [{"screen_name": "WHO", "name": "World Health Organization (WHO)", "id": 14499829, "id_str": "14499829", "indices": [1, 5]}], "urls": [{"url": "https://t.co/n5noMFKLVo", "expanded_url": "https://www.rp.pl/ochrona-zdrowia/art19013101-who-to-moze-byc-ostatnia-szansa-na-odkrycie-pochodzenia-koronawirusa", "display_url": "rp.pl/ochrona-zdrowi\u2026", "indices": [97, 120]}]}, "source": "<a href=\"https://about.twitter.com/products/tweetdeck\" rel=\"nofollow\">TweetDeck</a>", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user_id": 194399035, "user_id_str": "194399035", "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 1, "reply_count": 1, "quote_count": 0, "conversation_id": 1448486790390763521, "conversation_id_str": "1448486790390763521", "favorited": false, "retweeted": false, "possibly_sensitive": false, "possibly_sensitive_editable": true, "card": {"name": "summary", "url": "https://t.co/n5noMFKLVo", "card_type_url": "http://card-type-url-is-deprecated.invalid", "binding_values": {"vanity_url": {"type": "STRING", "string_value": "rp.pl", "scribe_key": "vanity_url"}, "domain": {"type": "STRING", "string_value": "www.rp.pl"}, "title": {"type": "STRING", "string_value": "WHO: To mo\u017ce by\u0107 ostatnia szansa na odkrycie pochodzenia koronawirusa"}, "description": {"type": "STRING", "string_value": "Nowo powo\u0142ana przez WHO grupa doradcza ds. niebezpiecznych patogen\u00f3w mo\u017ce by\u0107 \"ostatni\u0105 szans\u0105\" na ustalenie pochodzenia koronawirusa SARS-CoV-2. WHO wzywa Chin"}, "thumbnail_image_small": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448486795902128132/C-d-Iegq?format=jpg&name=100x100_2", "width": 100, "height": 100, "alt": null}}, "thumbnail_image": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448486795902128132/C-d-Iegq?format=jpg&name=144x144_2", "width": 144, "height": 144, "alt": null}}, "thumbnail_image_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448486795902128132/C-d-Iegq?format=jpg&name=420x420_2", "width": 420, "height": 420, "alt": null}}, "thumbnail_image_x_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448486795902128132/C-d-Iegq?format=png&name=2048x2048_2_exp", "width": 1200, "height": 716, "alt": null}}, "thumbnail_image_original": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448486795902128132/C-d-Iegq?format=jpg&name=orig", "width": 1200, "height": 716, "alt": null}}, "card_url": {"type": "STRING", "string_value": "https://t.co/n5noMFKLVo", "scribe_key": "card_url"}}, "card_platform": {"platform": {"device": {"name": "Swift", "version": "12"}, "audience": {"name": "production", "bucket": null}}}}, "lang": "pl", "supplemental_language": null}}
{"object_type": "TweetRaw", "download_datetime": "2021-10-14T13:13:25.039375+02:00", "raw_value": {"created_at": "Thu Oct 14 09:26:47 +0000 2021", "id": 1448581037659930624, "id_str": "1448581037659930624", "full_text": "#Rosja: Najgorsza doba od pocz\u0105tku #epidemia #koronawirus.a w tym kraju - 31 299 zaka\u017ce\u0144, 986 zgon\u00f3w #COVID19 #SARS_CoV_2 \n\nhttps://t.co/hwe4qJjuI1", "truncated": false, "display_text_range": [0, 147], "entities": {"hashtags": [{"text": "Rosja", "indices": [0, 6]}, {"text": "epidemia", "indices": [35, 44]}, {"text": "koronawirus", "indices": [45, 57]}, {"text": "COVID19", "indices": [101, 109]}, {"text": "SARS_CoV_2", "indices": [110, 121]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/hwe4qJjuI1", "expanded_url": "http://www.rp.pl/ochrona-zdrowia/art19014111-rosja-najgorsza-doba-od-poczatku-epidemii-koronawirusa", "display_url": "rp.pl/ochrona-zdrowi\u2026", "indices": [124, 147]}]}, "source": "<a href=\"https://about.twitter.com/products/tweetdeck\" rel=\"nofollow\">TweetDeck</a>", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user_id": 194399035, "user_id_str": "194399035", "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 1, "reply_count": 1, "quote_count": 0, "conversation_id": 1448581037659930624, "conversation_id_str": "1448581037659930624", "favorited": false, "retweeted": false, "possibly_sensitive": false, "possibly_sensitive_editable": true, "card": {"name": "summary", "url": "https://t.co/hwe4qJjuI1", "card_type_url": "http://card-type-url-is-deprecated.invalid", "binding_values": {"vanity_url": {"type": "STRING", "string_value": "rp.pl", "scribe_key": "vanity_url"}, "domain": {"type": "STRING", "string_value": "www.rp.pl"}, "title": {"type": "STRING", "string_value": "Koronawirus. Rosja: Najgorsza doba od pocz\u0105tku epidemii COVID-19"}, "description": {"type": "STRING", "string_value": "Liczba aktywnych zaka\u017ce\u0144 koronawirusem w Rosji wynosi obecnie 734 909."}, "thumbnail_image_small": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448581042651242496/dnpFBhgU?format=jpg&name=100x100_2", "width": 100, "height": 100, "alt": null}}, "thumbnail_image": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448581042651242496/dnpFBhgU?format=jpg&name=144x144_2", "width": 144, "height": 144, "alt": null}}, "thumbnail_image_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448581042651242496/dnpFBhgU?format=jpg&name=420x420_2", "width": 420, "height": 420, "alt": null}}, "thumbnail_image_x_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448581042651242496/dnpFBhgU?format=png&name=2048x2048_2_exp", "width": 1200, "height": 716, "alt": null}}, "thumbnail_image_original": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448581042651242496/dnpFBhgU?format=jpg&name=orig", "width": 1200, "height": 716, "alt": null}}, "card_url": {"type": "STRING", "string_value": "https://t.co/hwe4qJjuI1", "scribe_key": "card_url"}}, "card_platform": {"platform": {"device": {"name": "Swift", "version": "12"}, "audience": {"name": "production", "bucket": null}}}}, "lang": "pl", "supplemental_language": null}}
{"object_type": "TweetRaw", "download_datetime": "2021-10-14T13:13:25.039650+02:00", "raw_value": {"created_at": "Thu Oct 14 06:23:00 +0000 2021", "id": 1448534788156051461, "id_str": "1448534788156051461", "full_text": "Prof. Kozak: Jako\u015b\u0107 naszego uk\u0142adu odporno\u015bciowego w 75 procentach zale\u017cy od nas. Jego zdaniem, z epidemii #COVID19 wyjdziemy jako spo\u0142ecze\u0144stwo pokaleczone psychicznie, a ten aspekt ma ogromne znaczenie dla odporno\u015bci. https://t.co/0WFe4daLlw", "truncated": false, "display_text_range": [0, 243], "entities": {"hashtags": [{"text": "COVID19", "indices": [107, 115]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/0WFe4daLlw", "expanded_url": "https://www.gosc.pl/doc/7159255.Prof-Kozak-Jakosc-naszego-ukladu-odpornosciowego-w-75", "display_url": "gosc.pl/doc/7159255.Pr\u2026", "indices": [220, 243]}]}, "source": "<a href=\"https://mobile.twitter.com\" rel=\"nofollow\">Twitter Web App</a>", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user_id": 389938730, "user_id_str": "389938730", "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 1, "reply_count": 0, "quote_count": 0, "conversation_id": 1448534788156051461, "conversation_id_str": "1448534788156051461", "favorited": false, "retweeted": false, "possibly_sensitive": false, "possibly_sensitive_editable": true, "card": {"name": "summary_large_image", "url": "https://t.co/0WFe4daLlw", "card_type_url": "http://card-type-url-is-deprecated.invalid", "binding_values": {"vanity_url": {"type": "STRING", "string_value": "gosc.pl", "scribe_key": "vanity_url"}, "domain": {"type": "STRING", "string_value": "www.gosc.pl"}, "site": {"type": "USER", "user_value": {"id_str": "389938730", "path": []}, "scribe_key": "publisher_id"}, "title": {"type": "STRING", "string_value": "Prof. Kozak: Jako\u015b\u0107 naszego uk\u0142adu odporno\u015bciowego w 75 procentach..."}, "description": {"type": "STRING", "string_value": "Jako\u015b\u0107 naszego uk\u0142adu odporno\u015bciowego w 75 procentach zale\u017cy od nas - powiedzia\u0142 PAP prof. Wies\u0142aw Kozak z UMK w Toruniu, ekspert ds. immunologii i fizjologii. Podkre\u015bli\u0142, \u017ce z epidemii COVID-19..."}, "thumbnail_image_small": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448534636188082177/YPWVjfsp?format=jpg&name=100x100", "width": 100, "height": 64, "alt": ""}}, "thumbnail_image": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448534636188082177/YPWVjfsp?format=jpg&name=280x150", "width": 234, "height": 150, "alt": ""}}, "thumbnail_image_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448534636188082177/YPWVjfsp?format=jpg&name=800x320_1", "width": 500, "height": 320, "alt": ""}}, "thumbnail_image_x_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448534636188082177/YPWVjfsp?format=png&name=2048x2048_2_exp", "width": 1000, "height": 640, "alt": ""}}, "thumbnail_image_original": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448534636188082177/YPWVjfsp?format=jpg&name=orig", "width": 1000, "height": 640, "alt": ""}}, "summary_photo_image_small": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448534636188082177/YPWVjfsp?format=jpg&name=386x202", "width": 386, "height": 202, "alt": ""}}, "summary_photo_image": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448534636188082177/YPWVjfsp?format=jpg&name=600x314", "width": 600, "height": 314, "alt": ""}}, "summary_photo_image_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448534636188082177/YPWVjfsp?format=jpg&name=800x419", "width": 800, "height": 419, "alt": ""}}, "summary_photo_image_x_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448534636188082177/YPWVjfsp?format=png&name=2048x2048_2_exp", "width": 1000, "height": 640, "alt": ""}}, "summary_photo_image_original": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448534636188082177/YPWVjfsp?format=jpg&name=orig", "width": 1000, "height": 640, "alt": ""}}, "photo_image_full_size_small": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448534636188082177/YPWVjfsp?format=jpg&name=386x202", "width": 386, "height": 202, "alt": ""}}, "photo_image_full_size": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448534636188082177/YPWVjfsp?format=jpg&name=600x314", "width": 600, "height": 314, "alt": ""}}, "photo_image_full_size_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448534636188082177/YPWVjfsp?format=jpg&name=800x419", "width": 800, "height": 419, "alt": ""}}, "photo_image_full_size_x_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448534636188082177/YPWVjfsp?format=png&name=2048x2048_2_exp", "width": 1000, "height": 640, "alt": ""}}, "photo_image_full_size_original": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448534636188082177/YPWVjfsp?format=jpg&name=orig", "width": 1000, "height": 640, "alt": ""}}, "card_url": {"type": "STRING", "string_value": "https://t.co/0WFe4daLlw", "scribe_key": "card_url"}}, "users": {"389938730": {"id": 389938730, "id_str": "389938730", "name": "Go\u015b\u0107 Niedzielny", "screen_name": "Gosc_Niedzielny", "location": "Katowice, \u015al\u0105skie", "description": "W centrum wydarze\u0144 Ko\u015bcio\u0142a jeste\u015bmy od 1923 r.", "url": "http://t.co/9lHxsHIIvC", "entities": {"url": {"urls": [{"url": "http://t.co/9lHxsHIIvC", "expanded_url": "http://gosc.pl/", "display_url": "gosc.pl", "indices": [0, 22]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 34355, "fast_followers_count": 0, "normal_followers_count": 34355, "friends_count": 795, "listed_count": 195, "created_at": "Thu Oct 13 06:49:20 +0000 2011", "favourites_count": 459, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 74221, "media_count": 4101, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "EBEBEB", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1139438003800162304/i2hzFiEY_normal.png", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1139438003800162304/i2hzFiEY_normal.png", "profile_banner_url": "https://pbs.twimg.com/profile_banners/389938730/1618221907", "profile_image_extensions_alt_text": null, "profile_image_extensions_media_color": {"palette": [{"rgb": {"red": 255, "green": 0, "blue": 0}, "percentage": 87.24}, {"rgb": {"red": 255, "green": 255, "blue": 255}, "percentage": 9.52}, {"rgb": {"red": 255, "green": 166, "blue": 166}, "percentage": 1.5}, {"rgb": {"red": 255, "green": 86, "blue": 86}, "percentage": 1.3}, {"rgb": {"red": 255, "green": 129, "blue": 129}, "percentage": 0.47}]}, "profile_image_extensions_media_availability": null, "profile_image_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_banner_extensions_alt_text": null, "profile_banner_extensions_media_availability": null, "profile_banner_extensions_media_color": {"palette": [{"rgb": {"red": 238, "green": 0, "blue": 0}, "percentage": 70.24}, {"rgb": {"red": 1, "green": 1, "blue": 1}, "percentage": 17.1}, {"rgb": {"red": 254, "green": 250, "blue": 250}, "percentage": 4.61}, {"rgb": {"red": 134, "green": 0, "blue": 1}, "percentage": 2.65}, {"rgb": {"red": 252, "green": 165, "blue": 164}, "percentage": 1.87}]}, "profile_banner_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_link_color": "DD2E44", "profile_sidebar_border_color": "DFDFDF", "profile_sidebar_fill_color": "F3F3F3", "profile_text_color": "333333", "profile_use_background_image": false, "has_extended_profile": false, "default_profile": false, "default_profile_image": false, "pinned_tweet_ids": [], "pinned_tweet_ids_str": [], "has_custom_timelines": true, "can_dm": null, "following": null, "follow_request_sent": null, "notifications": null, "muting": null, "blocking": null, "blocked_by": null, "want_retweets": null, "advertiser_account_type": "promotable_user", "advertiser_account_service_levels": ["analytics"], "profile_interstitial_type": "", "business_profile_state": "none", "translator_type": "none", "withheld_in_countries": [], "followed_by": null, "ext": {"highlightedLabel": {"r": {"ok": {}}, "ttl": -1}}, "require_some_consent": false}}, "card_platform": {"platform": {"device": {"name": "Swift", "version": "12"}, "audience": {"name": "production", "bucket": null}}}}, "lang": "pl", "supplemental_language": null}}
{"object_type": "TweetRaw", "download_datetime": "2021-10-14T13:13:25.039836+02:00", "raw_value": {"created_at": "Thu Oct 14 04:15:10 +0000 2021", "id": 1448502618158940162, "id_str": "1448502618158940162", "full_text": "Jon Jones denied domestic violence allegiations in his first comments in the situation since his arrest.\n\nFull story: https://t.co/wdsUVUTB6f https://t.co/Cwi97eMl6Z", "truncated": false, "display_text_range": [0, 141], "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/wdsUVUTB6f", "expanded_url": "http://bit.ly/2YNXMMp", "display_url": "bit.ly/2YNXMMp", "indices": [118, 141]}], "media": [{"id": 1448502613973012482, "id_str": "1448502613973012482", "indices": [142, 165], "media_url": "http://pbs.twimg.com/media/FBodc_IWEAIUgQb.jpg", "media_url_https": "https://pbs.twimg.com/media/FBodc_IWEAIUgQb.jpg", "url": "https://t.co/Cwi97eMl6Z", "display_url": "pic.twitter.com/Cwi97eMl6Z", "expanded_url": "https://twitter.com/MMAjunkie/status/1448502618158940162/photo/1", "type": "photo", "original_info": {"width": 1080, "height": 1080, "focus_rects": [{"x": 0, "y": 0, "h": 605, "w": 1080}, {"x": 0, "y": 0, "h": 1080, "w": 1080}, {"x": 133, "y": 0, "h": 1080, "w": 947}, {"x": 459, "y": 0, "h": 1080, "w": 540}, {"x": 0, "y": 0, "h": 1080, "w": 1080}]}, "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 1080, "h": 1080, "resize": "fit"}, "small": {"w": 680, "h": 680, "resize": "fit"}, "medium": {"w": 1080, "h": 1080, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 1448502613973012482, "id_str": "1448502613973012482", "indices": [142, 165], "media_url": "http://pbs.twimg.com/media/FBodc_IWEAIUgQb.jpg", "media_url_https": "https://pbs.twimg.com/media/FBodc_IWEAIUgQb.jpg", "url": "https://t.co/Cwi97eMl6Z", "display_url": "pic.twitter.com/Cwi97eMl6Z", "expanded_url": "https://twitter.com/MMAjunkie/status/1448502618158940162/photo/1", "type": "photo", "original_info": {"width": 1080, "height": 1080, "focus_rects": [{"x": 0, "y": 0, "h": 605, "w": 1080}, {"x": 0, "y": 0, "h": 1080, "w": 1080}, {"x": 133, "y": 0, "h": 1080, "w": 947}, {"x": 459, "y": 0, "h": 1080, "w": 540}, {"x": 0, "y": 0, "h": 1080, "w": 1080}]}, "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 1080, "h": 1080, "resize": "fit"}, "small": {"w": 680, "h": 680, "resize": "fit"}, "medium": {"w": 1080, "h": 1080, "resize": "fit"}}, "media_key": "3_1448502613973012482", "ext_alt_text": null, "ext_media_availability": {"status": "available"}, "ext_media_color": {"palette": [{"rgb": {"red": 246, "green": 247, "blue": 249}, "percentage": 43.77}, {"rgb": {"red": 20, "green": 14, "blue": 24}, "percentage": 38.97}, {"rgb": {"red": 112, "green": 64, "blue": 58}, "percentage": 5.76}, {"rgb": {"red": 138, "green": 98, "blue": 98}, "percentage": 5.23}, {"rgb": {"red": 42, "green": 56, "blue": 76}, "percentage": 0.79}]}, "ext": {"mediaStats": {"r": "Missing", "ttl": -1}}}]}, "source": "<a href=\"https://trueanthem.com/\" rel=\"nofollow\">True Anthem</a>", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user_id": 27676444, "user_id_str": "27676444", "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 13, "favorite_count": 111, "reply_count": 35, "quote_count": 4, "conversation_id": 1448502618158940162, "conversation_id_str": "1448502618158940162", "favorited": false, "retweeted": false, "possibly_sensitive": false, "possibly_sensitive_editable": true, "lang": "en", "supplemental_language": null}}
{"object_type": "TweetRaw", "download_datetime": "2021-10-14T13:13:25.039941+02:00", "raw_value": {"created_at": "Thu Oct 14 06:08:42 +0000 2021", "id": 1448531187266473988, "id_str": "1448531187266473988", "full_text": "Tak to dzia\u0142a \ud83d\ude02\n#COVID19 #szczepionki", "truncated": false, "display_text_range": [0, 37], "entities": {"hashtags": [{"text": "COVID19", "indices": [16, 24]}, {"text": "szczepionki", "indices": [25, 37]}], "symbols": [], "user_mentions": [], "urls": []}, "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user_id": 420237342, "user_id_str": "420237342", "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1448477461327630347, "quoted_status_id_str": "1448477461327630347", "quoted_status_permalink": {"url": "https://t.co/nMWTb9VyqR", "expanded": "https://twitter.com/lukewearechange/status/1448477461327630347", "display": "twitter.com/lukewearechang\u2026"}, "retweet_count": 0, "favorite_count": 0, "reply_count": 0, "quote_count": 0, "conversation_id": 1448531187266473988, "conversation_id_str": "1448531187266473988", "favorited": false, "retweeted": false, "lang": "pl", "supplemental_language": null}}
{"object_type": "TweetRaw", "download_datetime": "2021-10-14T13:13:25.040127+02:00", "raw_value": {"created_at": "Thu Oct 14 08:42:02 +0000 2021", "id": 1448569775202967554, "id_str": "1448569775202967554", "full_text": "Kolejna bariera prze\u0142amana \u2013 3 tysi\u0105ce nowych zaka\u017ce\u0144\nhttps://t.co/DXfO5M5ETC\n\n#koronawirus #wielkopolska #koronawiruswpolsce #koronawiruspolska #pozna\u0144 #zaka\u017cenia #covid19", "truncated": false, "display_text_range": [0, 172], "entities": {"hashtags": [{"text": "koronawirus", "indices": [79, 91]}, {"text": "wielkopolska", "indices": [92, 105]}, {"text": "koronawiruswpolsce", "indices": [106, 125]}, {"text": "koronawiruspolska", "indices": [126, 144]}, {"text": "pozna\u0144", "indices": [145, 152]}, {"text": "zaka\u017cenia", "indices": [153, 163]}, {"text": "covid19", "indices": [164, 172]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/DXfO5M5ETC", "expanded_url": "https://codziennypoznan.pl/artykul/2021-10-14/kolejna-bariera-przelamana-3-tysiace-nowych-zakazen/", "display_url": "codziennypoznan.pl/artykul/2021-1\u2026", "indices": [54, 77]}]}, "source": "<a href=\"https://mobile.twitter.com\" rel=\"nofollow\">Twitter Web App</a>", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user_id": 3906736875, "user_id_str": "3906736875", "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "reply_count": 0, "quote_count": 0, "conversation_id": 1448569775202967554, "conversation_id_str": "1448569775202967554", "favorited": false, "retweeted": false, "possibly_sensitive": false, "possibly_sensitive_editable": true, "card": {"name": "summary_large_image", "url": "https://t.co/DXfO5M5ETC", "card_type_url": "http://card-type-url-is-deprecated.invalid", "binding_values": {"vanity_url": {"type": "STRING", "string_value": "codziennypoznan.pl", "scribe_key": "vanity_url"}, "domain": {"type": "STRING", "string_value": "codziennypoznan.pl"}, "title": {"type": "STRING", "string_value": "Kolejna bariera prze\u0142amana - 3 tysi\u0105ce nowych zaka\u017ce\u0144 - Codzienny Pozna\u0144"}, "description": {"type": "STRING", "string_value": "Ministerstwo Zdrowia poinformowa\u0142o w dzisiejszym raporcie o 3000 nowych, potwierdzonych przypadkach zaka\u017ce\u0144 koronawirusem w Polsce."}, "thumbnail_image_small": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1447462734489137155/stjgTGf1?format=jpg&name=100x100", "width": 100, "height": 67, "alt": null}}, "thumbnail_image": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1447462734489137155/stjgTGf1?format=jpg&name=280x150", "width": 225, "height": 150, "alt": null}}, "thumbnail_image_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1447462734489137155/stjgTGf1?format=jpg&name=800x320_1", "width": 480, "height": 320, "alt": null}}, "thumbnail_image_x_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1447462734489137155/stjgTGf1?format=png&name=2048x2048_2_exp", "width": 1920, "height": 1280, "alt": null}}, "thumbnail_image_original": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1447462734489137155/stjgTGf1?format=jpg&name=orig", "width": 1920, "height": 1280, "alt": null}}, "summary_photo_image_small": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1447462734489137155/stjgTGf1?format=jpg&name=386x202", "width": 386, "height": 202, "alt": null}}, "summary_photo_image": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1447462734489137155/stjgTGf1?format=jpg&name=600x314", "width": 600, "height": 314, "alt": null}}, "summary_photo_image_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1447462734489137155/stjgTGf1?format=jpg&name=800x419", "width": 800, "height": 419, "alt": null}}, "summary_photo_image_x_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1447462734489137155/stjgTGf1?format=png&name=2048x2048_2_exp", "width": 1920, "height": 1280, "alt": null}}, "summary_photo_image_original": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1447462734489137155/stjgTGf1?format=jpg&name=orig", "width": 1920, "height": 1280, "alt": null}}, "photo_image_full_size_small": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1447462734489137155/stjgTGf1?format=jpg&name=386x202", "width": 386, "height": 202, "alt": null}}, "photo_image_full_size": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1447462734489137155/stjgTGf1?format=jpg&name=600x314", "width": 600, "height": 314, "alt": null}}, "photo_image_full_size_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1447462734489137155/stjgTGf1?format=jpg&name=800x419", "width": 800, "height": 419, "alt": null}}, "photo_image_full_size_x_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1447462734489137155/stjgTGf1?format=png&name=2048x2048_2_exp", "width": 1920, "height": 1280, "alt": null}}, "photo_image_full_size_original": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1447462734489137155/stjgTGf1?format=jpg&name=orig", "width": 1920, "height": 1280, "alt": null}}, "card_url": {"type": "STRING", "string_value": "https://t.co/DXfO5M5ETC", "scribe_key": "card_url"}}, "card_platform": {"platform": {"device": {"name": "Swift", "version": "12"}, "audience": {"name": "production", "bucket": null}}}}, "lang": "pl", "supplemental_language": null}}
{"object_type": "TweetRaw", "download_datetime": "2021-10-14T13:13:25.040300+02:00", "raw_value": {"created_at": "Thu Oct 14 09:06:19 +0000 2021", "id": 1448575887679627267, "id_str": "1448575887679627267", "full_text": "Stan na dzi\u015b...\n#COVID19 https://t.co/04BqaUXmd4", "truncated": false, "display_text_range": [0, 24], "entities": {"hashtags": [{"text": "COVID19", "indices": [16, 24]}], "symbols": [], "user_mentions": [], "urls": [], "media": [{"id": 1448575873733513218, "id_str": "1448575873733513218", "indices": [25, 48], "media_url": "http://pbs.twimg.com/media/FBpgFRAWUAICsLM.png", "media_url_https": "https://pbs.twimg.com/media/FBpgFRAWUAICsLM.png", "url": "https://t.co/04BqaUXmd4", "display_url": "pic.twitter.com/04BqaUXmd4", "expanded_url": "https://twitter.com/irenagos/status/1448575887679627267/photo/1", "type": "photo", "original_info": {"width": 800, "height": 414, "focus_rects": [{"x": 10, "y": 0, "h": 414, "w": 739}, {"x": 172, "y": 0, "h": 414, "w": 414}, {"x": 198, "y": 0, "h": 414, "w": 363}, {"x": 276, "y": 0, "h": 414, "w": 207}, {"x": 0, "y": 0, "h": 414, "w": 800}]}, "sizes": {"medium": {"w": 800, "h": 414, "resize": "fit"}, "small": {"w": 680, "h": 352, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 800, "h": 414, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 1448575873733513218, "id_str": "1448575873733513218", "indices": [25, 48], "media_url": "http://pbs.twimg.com/media/FBpgFRAWUAICsLM.png", "media_url_https": "https://pbs.twimg.com/media/FBpgFRAWUAICsLM.png", "url": "https://t.co/04BqaUXmd4", "display_url": "pic.twitter.com/04BqaUXmd4", "expanded_url": "https://twitter.com/irenagos/status/1448575887679627267/photo/1", "type": "photo", "original_info": {"width": 800, "height": 414, "focus_rects": [{"x": 10, "y": 0, "h": 414, "w": 739}, {"x": 172, "y": 0, "h": 414, "w": 414}, {"x": 198, "y": 0, "h": 414, "w": 363}, {"x": 276, "y": 0, "h": 414, "w": 207}, {"x": 0, "y": 0, "h": 414, "w": 800}]}, "sizes": {"medium": {"w": 800, "h": 414, "resize": "fit"}, "small": {"w": 680, "h": 352, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 800, "h": 414, "resize": "fit"}}, "media_key": "3_1448575873733513218", "ext_alt_text": null, "ext_media_availability": {"status": "available"}, "ext_media_color": {"palette": [{"rgb": {"red": 217, "green": 229, "blue": 244}, "percentage": 67.15}, {"rgb": {"red": 226, "green": 73, "blue": 32}, "percentage": 11.86}, {"rgb": {"red": 105, "green": 142, "blue": 200}, "percentage": 11.55}, {"rgb": {"red": 232, "green": 141, "blue": 118}, "percentage": 4.21}, {"rgb": {"red": 239, "green": 208, "blue": 202}, "percentage": 1.7}]}, "ext": {"mediaStats": {"r": "Missing", "ttl": -1}}}]}, "source": "<a href=\"https://mobile.twitter.com\" rel=\"nofollow\">Twitter Web App</a>", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user_id": 2887099821, "user_id_str": "2887099821", "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 1, "favorite_count": 3, "reply_count": 1, "quote_count": 0, "conversation_id": 1448575887679627267, "conversation_id_str": "1448575887679627267", "favorited": false, "retweeted": false, "possibly_sensitive": false, "possibly_sensitive_editable": true, "lang": "pl", "supplemental_language": null}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:25.043237+02:00", "raw_value": {"id": 420237342, "id_str": "420237342", "name": "nostromo242", "screen_name": "nostromo242", "location": "", "description": "\ud83d\udce2\ud83c\uddf5\ud83c\uddf1\ud83c\uddef\ud83c\uddf5 \ud83c\uddee\ud83c\uddf9 It all seems so stupid it makes me want to give up, but why should I give up when it all seems so stupid #seo #graphicdesign #uxdesign", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 155, "fast_followers_count": 0, "normal_followers_count": 155, "friends_count": 803, "listed_count": 3, "created_at": "Thu Nov 24 10:57:20 +0000 2011", "favourites_count": 57582, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 10253, "media_count": 648, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1082382533608783873/Q5oLduMO_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1082382533608783873/Q5oLduMO_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/420237342/1546895123", "profile_image_extensions_alt_text": null, "profile_image_extensions_media_availability": null, "profile_image_extensions_media_color": {"palette": [{"rgb": {"red": 219, "green": 213, "blue": 202}, "percentage": 69.32}, {"rgb": {"red": 30, "green": 30, "blue": 32}, "percentage": 22.75}, {"rgb": {"red": 111, "green": 109, "blue": 105}, "percentage": 6.19}, {"rgb": {"red": 107, "green": 106, "blue": 104}, "percentage": 3.39}]}, "profile_image_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_banner_extensions_alt_text": null, "profile_banner_extensions_media_color": {"palette": [{"rgb": {"red": 193, "green": 193, "blue": 193}, "percentage": 65.01}, {"rgb": {"red": 10, "green": 10, "blue": 10}, "percentage": 31.32}]}, "profile_banner_extensions_media_availability": null, "profile_banner_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_link_color": "ABB8C2", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "has_extended_profile": false, "default_profile": false, "default_profile_image": false, "pinned_tweet_ids": [1341345588051402758], "pinned_tweet_ids_str": ["1341345588051402758"], "has_custom_timelines": true, "can_dm": null, "following": null, "follow_request_sent": null, "notifications": null, "muting": null, "blocking": null, "blocked_by": null, "want_retweets": null, "advertiser_account_type": "none", "advertiser_account_service_levels": [], "profile_interstitial_type": "", "business_profile_state": "none", "translator_type": "none", "withheld_in_countries": [], "followed_by": null, "ext": {"highlightedLabel": {"r": {"ok": {}}, "ttl": -1}}, "require_some_consent": false}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:25.043378+02:00", "raw_value": {"id": 2887099821, "id_str": "2887099821", "name": "reina\ud83c\uddf5\ud83c\uddf1#CSB \ud83c\uddea\ud83c\uddfa", "screen_name": "irenagos", "location": "Pomorskie, Polska", "description": "Sarkazm mi ojcem, ironia matk\u0105 - z mym charakterem nie ma tak \u0142atwo...", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 7013, "fast_followers_count": 0, "normal_followers_count": 7013, "friends_count": 972, "listed_count": 12, "created_at": "Fri Nov 21 17:54:48 +0000 2014", "favourites_count": 128614, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 67029, "media_count": 9695, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1400512553474834433/4-lNJuy8_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1400512553474834433/4-lNJuy8_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/2887099821/1576768234", "profile_image_extensions_alt_text": null, "profile_image_extensions_media_availability": null, "profile_image_extensions_media_color": {"palette": [{"rgb": {"red": 8, "green": 6, "blue": 5}, "percentage": 63.89}, {"rgb": {"red": 148, "green": 68, "blue": 32}, "percentage": 23.23}, {"rgb": {"red": 245, "green": 176, "blue": 117}, "percentage": 5.65}, {"rgb": {"red": 79, "green": 66, "blue": 36}, "percentage": 3.89}, {"rgb": {"red": 96, "green": 41, "blue": 20}, "percentage": 1.53}]}, "profile_image_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_banner_extensions_alt_text": null, "profile_banner_extensions_media_availability": null, "profile_banner_extensions_media_color": {"palette": [{"rgb": {"red": 221, "green": 210, "blue": 189}, "percentage": 75.0}, {"rgb": {"red": 161, "green": 138, "blue": 88}, "percentage": 15.99}, {"rgb": {"red": 94, "green": 62, "blue": 16}, "percentage": 2.82}, {"rgb": {"red": 146, "green": 117, "blue": 41}, "percentage": 2.71}, {"rgb": {"red": 213, "green": 197, "blue": 150}, "percentage": 2.25}]}, "profile_banner_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_link_color": "981CEB", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "pinned_tweet_ids": [1000708968925270019], "pinned_tweet_ids_str": ["1000708968925270019"], "has_custom_timelines": false, "can_dm": null, "following": null, "follow_request_sent": null, "notifications": null, "muting": null, "blocking": null, "blocked_by": null, "want_retweets": null, "advertiser_account_type": "promotable_user", "advertiser_account_service_levels": [], "profile_interstitial_type": "", "business_profile_state": "none", "translator_type": "none", "withheld_in_countries": [], "followed_by": null, "ext": {"highlightedLabel": {"r": {"ok": {}}, "ttl": -1}}, "require_some_consent": false}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:25.043508+02:00", "raw_value": {"id": 95994080, "id_str": "95994080", "name": "Luke Rudkowski", "screen_name": "Lukewearechange", "location": "Brooklyn NY", "description": "\ud83c\uddf5\ud83c\uddf1\ud83c\uddfa\ud83c\uddf8 \u201cMr. Rudkowski is no shrinking violet. Armed with a video camera and a YouTube account- NYTIMES", "url": "https://t.co/5SQOVrsSCo", "entities": {"url": {"urls": [{"url": "https://t.co/5SQOVrsSCo", "expanded_url": "http://youtube.com/wearechange", "display_url": "youtube.com/wearechange", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 186640, "fast_followers_count": 0, "normal_followers_count": 186640, "friends_count": 2885, "listed_count": 1653, "created_at": "Thu Dec 10 22:04:56 +0000 2009", "favourites_count": 4288, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": true, "statuses_count": 42943, "media_count": 11590, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1199152764825280513/IfkjLZuB_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1199152764825280513/IfkjLZuB_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/95994080/1547747122", "profile_image_extensions_alt_text": null, "profile_image_extensions_media_availability": null, "profile_image_extensions_media_color": {"palette": [{"rgb": {"red": 55, "green": 57, "blue": 62}, "percentage": 36.25}, {"rgb": {"red": 166, "green": 168, "blue": 167}, "percentage": 11.88}, {"rgb": {"red": 155, "green": 124, "blue": 104}, "percentage": 9.91}, {"rgb": {"red": 114, "green": 145, "blue": 42}, "percentage": 6.31}, {"rgb": {"red": 42, "green": 71, "blue": 114}, "percentage": 3.08}]}, "profile_image_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_banner_extensions_alt_text": null, "profile_banner_extensions_media_availability": null, "profile_banner_extensions_media_color": {"palette": [{"rgb": {"red": 12, "green": 20, "blue": 47}, "percentage": 60.72}, {"rgb": {"red": 25, "green": 26, "blue": 30}, "percentage": 14.12}, {"rgb": {"red": 18, "green": 30, "blue": 80}, "percentage": 9.76}, {"rgb": {"red": 193, "green": 195, "blue": 201}, "percentage": 7.01}, {"rgb": {"red": 119, "green": 66, "blue": 111}, "percentage": 0.94}]}, "profile_banner_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_link_color": "4E6085", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "C0DFEC", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "pinned_tweet_ids": [1409199758720307200], "pinned_tweet_ids_str": ["1409199758720307200"], "has_custom_timelines": true, "can_dm": null, "following": null, "follow_request_sent": null, "notifications": null, "muting": null, "blocking": null, "blocked_by": null, "want_retweets": null, "advertiser_account_type": "promotable_user", "advertiser_account_service_levels": [], "profile_interstitial_type": "", "business_profile_state": "none", "translator_type": "none", "withheld_in_countries": [], "followed_by": null, "ext": {"highlightedLabel": {"r": {"ok": {}}, "ttl": -1}}, "require_some_consent": false}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:25.043625+02:00", "raw_value": {"id": 1293092925312819207, "id_str": "1293092925312819207", "name": "Starboy", "screen_name": "sztywnychlopak", "location": "", "description": "", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 8, "fast_followers_count": 0, "normal_followers_count": 8, "friends_count": 422, "listed_count": 0, "created_at": "Tue Aug 11 07:52:42 +0000 2020", "favourites_count": 1994, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 1082, "media_count": 82, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "F5F8FA", "profile_background_image_url": null, "profile_background_image_url_https": null, "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1447033860282327041/0FAKDOfe_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1447033860282327041/0FAKDOfe_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1293092925312819207/1626895404", "profile_image_extensions_alt_text": null, "profile_image_extensions_media_color": {"palette": [{"rgb": {"red": 80, "green": 62, "blue": 49}, "percentage": 35.37}, {"rgb": {"red": 195, "green": 136, "blue": 108}, "percentage": 26.39}, {"rgb": {"red": 176, "green": 172, "blue": 155}, "percentage": 13.65}, {"rgb": {"red": 109, "green": 50, "blue": 39}, "percentage": 8.52}, {"rgb": {"red": 54, "green": 52, "blue": 63}, "percentage": 3.07}]}, "profile_image_extensions_media_availability": null, "profile_image_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_banner_extensions_media_color": {"palette": [{"rgb": {"red": 99, "green": 95, "blue": 74}, "percentage": 52.49}, {"rgb": {"red": 209, "green": 146, "blue": 117}, "percentage": 36.76}, {"rgb": {"red": 84, "green": 48, "blue": 36}, "percentage": 6.41}, {"rgb": {"red": 129, "green": 98, "blue": 77}, "percentage": 2.8}, {"rgb": {"red": 199, "green": 104, "blue": 69}, "percentage": 1.04}]}, "profile_banner_extensions_alt_text": null, "profile_banner_extensions_media_availability": null, "profile_banner_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": true, "default_profile_image": false, "pinned_tweet_ids": [1418090710272720896], "pinned_tweet_ids_str": ["1418090710272720896"], "has_custom_timelines": false, "can_dm": null, "following": null, "follow_request_sent": null, "notifications": null, "muting": null, "blocking": null, "blocked_by": null, "want_retweets": null, "advertiser_account_type": "none", "advertiser_account_service_levels": [], "profile_interstitial_type": "", "business_profile_state": "none", "translator_type": "none", "withheld_in_countries": [], "followed_by": null, "ext": {"highlightedLabel": {"r": {"ok": {}}, "ttl": -1}}, "require_some_consent": false}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:25.043732+02:00", "raw_value": {"id": 3906736875, "id_str": "3906736875", "name": "Codzienny Pozna\u0144", "screen_name": "codziennypoznan", "location": "Pozna\u0144, Polska", "description": "Portal informacyjny\n\n#wiadomo\u015bci #info #Pozna\u0144 #Wielkopolska", "url": "https://t.co/q3faNMDkFI", "entities": {"url": {"urls": [{"url": "https://t.co/q3faNMDkFI", "expanded_url": "http://www.codziennypoznan.pl", "display_url": "codziennypoznan.pl", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 2142, "fast_followers_count": 0, "normal_followers_count": 2142, "friends_count": 115, "listed_count": 12, "created_at": "Fri Oct 09 07:11:40 +0000 2015", "favourites_count": 329, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 9118, "media_count": 356, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/652383367292284928/B6bL7TVT_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/652383367292284928/B6bL7TVT_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/3906736875/1550222646", "profile_image_extensions_alt_text": null, "profile_image_extensions_media_availability": null, "profile_image_extensions_media_color": null, "profile_image_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_banner_extensions_media_color": {"palette": [{"rgb": {"red": 55, "green": 37, "blue": 76}, "percentage": 33.48}, {"rgb": {"red": 196, "green": 176, "blue": 177}, "percentage": 29.94}, {"rgb": {"red": 134, "green": 151, "blue": 171}, "percentage": 11.25}, {"rgb": {"red": 81, "green": 35, "blue": 47}, "percentage": 7.72}, {"rgb": {"red": 48, "green": 43, "blue": 98}, "percentage": 5.78}]}, "profile_banner_extensions_alt_text": null, "profile_banner_extensions_media_availability": null, "profile_banner_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": true, "default_profile_image": false, "pinned_tweet_ids": [], "pinned_tweet_ids_str": [], "has_custom_timelines": false, "can_dm": null, "following": null, "follow_request_sent": null, "notifications": null, "muting": null, "blocking": null, "blocked_by": null, "want_retweets": null, "advertiser_account_type": "none", "advertiser_account_service_levels": [], "profile_interstitial_type": "", "business_profile_state": "none", "translator_type": "none", "withheld_in_countries": [], "followed_by": null, "ext": {"highlightedLabel": {"r": {"ok": {}}, "ttl": -1}}, "require_some_consent": false}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:25.043852+02:00", "raw_value": {"id": 47295451, "id_str": "47295451", "name": "tvp.info \ud83c\uddf5\ud83c\uddf1", "screen_name": "tvp_info", "location": "Warszawa", "description": "https://t.co/HZLQdgiRta #wieszwiecej - naj\u015bwie\u017csze informacje z kraju i ze \u015bwiata. Telefon interwencyjny: 601600100", "url": null, "entities": {"description": {"urls": [{"url": "https://t.co/HZLQdgiRta", "expanded_url": "http://tvp.info", "display_url": "tvp.info", "indices": [0, 23]}]}}, "protected": false, "followers_count": 720026, "fast_followers_count": 0, "normal_followers_count": 720026, "friends_count": 1872, "listed_count": 1067, "created_at": "Mon Jun 15 09:00:38 +0000 2009", "favourites_count": 1043, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": true, "statuses_count": 273410, "media_count": 38962, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "FFFFFF", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme17/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme17/bg.gif", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/974713408502235137/TPTolZw8_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/974713408502235137/TPTolZw8_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/47295451/1633810932", "profile_image_extensions_alt_text": null, "profile_image_extensions_media_availability": null, "profile_image_extensions_media_color": {"palette": [{"rgb": {"red": 255, "green": 255, "blue": 255}, "percentage": 89.91}, {"rgb": {"red": 187, "green": 19, "blue": 54}, "percentage": 7.68}, {"rgb": {"red": 224, "green": 143, "blue": 158}, "percentage": 1.46}, {"rgb": {"red": 211, "green": 104, "blue": 124}, "percentage": 0.58}, {"rgb": {"red": 117, "green": 117, "blue": 119}, "percentage": 0.33}]}, "profile_image_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_banner_extensions_alt_text": null, "profile_banner_extensions_media_availability": null, "profile_banner_extensions_media_color": {"palette": [{"rgb": {"red": 31, "green": 28, "blue": 23}, "percentage": 82.36}, {"rgb": {"red": 234, "green": 234, "blue": 233}, "percentage": 12.17}, {"rgb": {"red": 124, "green": 122, "blue": 117}, "percentage": 2.51}, {"rgb": {"red": 54, "green": 23, "blue": 20}, "percentage": 0.64}, {"rgb": {"red": 169, "green": 79, "blue": 94}, "percentage": 0.22}]}, "profile_banner_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_link_color": "E32424", "profile_sidebar_border_color": "FFFFFF", "profile_sidebar_fill_color": "E6F6F9", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": false, "default_profile_image": false, "pinned_tweet_ids": [1447888528323452930], "pinned_tweet_ids_str": ["1447888528323452930"], "has_custom_timelines": true, "can_dm": null, "following": null, "follow_request_sent": null, "notifications": null, "muting": null, "blocking": null, "blocked_by": null, "want_retweets": null, "advertiser_account_type": "promotable_user", "advertiser_account_service_levels": ["reseller", "media_studio"], "profile_interstitial_type": "", "business_profile_state": "none", "translator_type": "none", "withheld_in_countries": [], "followed_by": null, "ext": {"highlightedLabel": {"r": {"ok": {}}, "ttl": -1}}, "require_some_consent": false}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:25.043971+02:00", "raw_value": {"id": 389938730, "id_str": "389938730", "name": "Go\u015b\u0107 Niedzielny", "screen_name": "Gosc_Niedzielny", "location": "Katowice, \u015al\u0105skie", "description": "W centrum wydarze\u0144 Ko\u015bcio\u0142a jeste\u015bmy od 1923 r.", "url": "http://t.co/9lHxsHIIvC", "entities": {"url": {"urls": [{"url": "http://t.co/9lHxsHIIvC", "expanded_url": "http://gosc.pl/", "display_url": "gosc.pl", "indices": [0, 22]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 34355, "fast_followers_count": 0, "normal_followers_count": 34355, "friends_count": 795, "listed_count": 195, "created_at": "Thu Oct 13 06:49:20 +0000 2011", "favourites_count": 459, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 74221, "media_count": 4101, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "EBEBEB", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1139438003800162304/i2hzFiEY_normal.png", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1139438003800162304/i2hzFiEY_normal.png", "profile_banner_url": "https://pbs.twimg.com/profile_banners/389938730/1618221907", "profile_image_extensions_alt_text": null, "profile_image_extensions_media_color": {"palette": [{"rgb": {"red": 255, "green": 0, "blue": 0}, "percentage": 87.24}, {"rgb": {"red": 255, "green": 255, "blue": 255}, "percentage": 9.52}, {"rgb": {"red": 255, "green": 166, "blue": 166}, "percentage": 1.5}, {"rgb": {"red": 255, "green": 86, "blue": 86}, "percentage": 1.3}, {"rgb": {"red": 255, "green": 129, "blue": 129}, "percentage": 0.47}]}, "profile_image_extensions_media_availability": null, "profile_image_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_banner_extensions_alt_text": null, "profile_banner_extensions_media_availability": null, "profile_banner_extensions_media_color": {"palette": [{"rgb": {"red": 238, "green": 0, "blue": 0}, "percentage": 70.24}, {"rgb": {"red": 1, "green": 1, "blue": 1}, "percentage": 17.1}, {"rgb": {"red": 254, "green": 250, "blue": 250}, "percentage": 4.61}, {"rgb": {"red": 134, "green": 0, "blue": 1}, "percentage": 2.65}, {"rgb": {"red": 252, "green": 165, "blue": 164}, "percentage": 1.87}]}, "profile_banner_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_link_color": "DD2E44", "profile_sidebar_border_color": "DFDFDF", "profile_sidebar_fill_color": "F3F3F3", "profile_text_color": "333333", "profile_use_background_image": false, "has_extended_profile": false, "default_profile": false, "default_profile_image": false, "pinned_tweet_ids": [], "pinned_tweet_ids_str": [], "has_custom_timelines": true, "can_dm": null, "following": null, "follow_request_sent": null, "notifications": null, "muting": null, "blocking": null, "blocked_by": null, "want_retweets": null, "advertiser_account_type": "promotable_user", "advertiser_account_service_levels": ["analytics"], "profile_interstitial_type": "", "business_profile_state": "none", "translator_type": "none", "withheld_in_countries": [], "followed_by": null, "ext": {"highlightedLabel": {"r": {"ok": {}}, "ttl": -1}}, "require_some_consent": false}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:25.044089+02:00", "raw_value": {"id": 462886126, "id_str": "462886126", "name": "Ministerstwo Zdrowia", "screen_name": "MZ_GOV_PL", "location": "Polska", "description": "Oficjalny profil Ministerstwa Zdrowia", "url": "http://t.co/fYgPUTSfDq", "entities": {"url": {"urls": [{"url": "http://t.co/fYgPUTSfDq", "expanded_url": "http://www.mz.gov.pl", "display_url": "mz.gov.pl", "indices": [0, 22]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 439887, "fast_followers_count": 0, "normal_followers_count": 439887, "friends_count": 1175, "listed_count": 640, "created_at": "Fri Jan 13 13:40:29 +0000 2012", "favourites_count": 3153, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": true, "statuses_count": 14653, "media_count": 5389, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "ABB8C2", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme18/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme18/bg.gif", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1069885833656844290/Inl2pghx_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1069885833656844290/Inl2pghx_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/462886126/1632485104", "profile_image_extensions_alt_text": null, "profile_image_extensions_media_availability": null, "profile_image_extensions_media_color": {"palette": [{"rgb": {"red": 255, "green": 255, "blue": 255}, "percentage": 94.04}, {"rgb": {"red": 46, "green": 165, "blue": 215}, "percentage": 4.24}, {"rgb": {"red": 122, "green": 122, "blue": 122}, "percentage": 1.43}, {"rgb": {"red": 160, "green": 228, "blue": 241}, "percentage": 0.21}]}, "profile_image_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_banner_extensions_alt_text": null, "profile_banner_extensions_media_availability": null, "profile_banner_extensions_media_color": {"palette": [{"rgb": {"red": 127, "green": 140, "blue": 149}, "percentage": 31.49}, {"rgb": {"red": 229, "green": 231, "blue": 233}, "percentage": 29.16}, {"rgb": {"red": 30, "green": 48, "blue": 18}, "percentage": 8.9}, {"rgb": {"red": 115, "green": 122, "blue": 62}, "percentage": 5.29}, {"rgb": {"red": 72, "green": 29, "blue": 13}, "percentage": 4.2}]}, "profile_banner_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_link_color": "1B95E0", "profile_sidebar_border_color": "EEEEEE", "profile_sidebar_fill_color": "F6F6F6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": false, "default_profile_image": false, "pinned_tweet_ids": [1410483305686855680], "pinned_tweet_ids_str": ["1410483305686855680"], "has_custom_timelines": false, "can_dm": null, "following": null, "follow_request_sent": null, "notifications": null, "muting": null, "blocking": null, "blocked_by": null, "want_retweets": null, "advertiser_account_type": "promotable_user", "advertiser_account_service_levels": ["reseller", "analytics"], "profile_interstitial_type": "", "business_profile_state": "none", "translator_type": "none", "withheld_in_countries": [], "followed_by": null, "ext": {"highlightedLabel": {"r": {"ok": {}}, "ttl": -1}}, "require_some_consent": false}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:25.044196+02:00", "raw_value": {"id": 194399035, "id_str": "194399035", "name": "Rzeczpospolita", "screen_name": "rzeczpospolita", "location": "Polska", "description": "Rzeczpospolita to jeden z lider\u00f3w prasy codziennej w Polsce. Jest najcz\u0119\u015bciej cytowan\u0105 gazet\u0105 w kraju. Oto jedyny oficjalny profil Rz.", "url": "https://t.co/lg4AvBS252", "entities": {"url": {"urls": [{"url": "https://t.co/lg4AvBS252", "expanded_url": "http://www.rp.pl", "display_url": "rp.pl", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 232089, "fast_followers_count": 0, "normal_followers_count": 232089, "friends_count": 647, "listed_count": 980, "created_at": "Fri Sep 24 01:14:56 +0000 2010", "favourites_count": 1954, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": true, "statuses_count": 219787, "media_count": 38916, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "F7F7F7", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme7/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme7/bg.gif", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1410501087862341632/xn0fmSY9_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1410501087862341632/xn0fmSY9_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/194399035/1631616273", "profile_image_extensions_alt_text": null, "profile_image_extensions_media_availability": null, "profile_image_extensions_media_color": {"palette": [{"rgb": {"red": 206, "green": 206, "blue": 206}, "percentage": 93.55}, {"rgb": {"red": 82, "green": 82, "blue": 82}, "percentage": 3.54}]}, "profile_image_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_banner_extensions_alt_text": null, "profile_banner_extensions_media_availability": null, "profile_banner_extensions_media_color": {"palette": [{"rgb": {"red": 229, "green": 245, "blue": 219}, "percentage": 95.24}, {"rgb": {"red": 127, "green": 136, "blue": 122}, "percentage": 2.51}, {"rgb": {"red": 28, "green": 28, "blue": 28}, "percentage": 2.22}]}, "profile_banner_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_link_color": "CC0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "F3F3F3", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": false, "default_profile_image": false, "pinned_tweet_ids": [], "pinned_tweet_ids_str": [], "has_custom_timelines": true, "can_dm": null, "following": null, "follow_request_sent": null, "notifications": null, "muting": null, "blocking": null, "blocked_by": null, "want_retweets": null, "advertiser_account_type": "promotable_user", "advertiser_account_service_levels": ["smb"], "profile_interstitial_type": "", "business_profile_state": "none", "translator_type": "none", "withheld_in_countries": [], "followed_by": null, "ext": {"highlightedLabel": {"r": {"ok": {}}, "ttl": -1}}, "require_some_consent": false}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:25.044308+02:00", "raw_value": {"id": 702976181772132361, "id_str": "702976181772132361", "name": "TVP3", "screen_name": "tvp_3", "location": "Polska", "description": "Najwa\u017cniejsze i najciekawsze  informacje z Polski. #TVP3 - zawsze blisko Ciebie.", "url": "https://t.co/YWa3cdZoRF", "entities": {"url": {"urls": [{"url": "https://t.co/YWa3cdZoRF", "expanded_url": "https://regiony.tvp.pl/", "display_url": "regiony.tvp.pl", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 13246, "fast_followers_count": 0, "normal_followers_count": 13246, "friends_count": 115, "listed_count": 35, "created_at": "Thu Feb 25 21:59:17 +0000 2016", "favourites_count": 442, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 4674, "media_count": 454, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "F5F8FA", "profile_background_image_url": null, "profile_background_image_url_https": null, "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1387724875146612740/wSCd80xf_normal.png", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1387724875146612740/wSCd80xf_normal.png", "profile_banner_url": "https://pbs.twimg.com/profile_banners/702976181772132361/1624864327", "profile_image_extensions_media_color": {"palette": [{"rgb": {"red": 231, "green": 231, "blue": 232}, "percentage": 74.54}, {"rgb": {"red": 11, "green": 65, "blue": 145}, "percentage": 24.32}, {"rgb": {"red": 110, "green": 142, "blue": 189}, "percentage": 1.09}]}, "profile_image_extensions_alt_text": null, "profile_image_extensions_media_availability": null, "profile_image_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_banner_extensions_alt_text": null, "profile_banner_extensions_media_availability": null, "profile_banner_extensions_media_color": {"palette": [{"rgb": {"red": 52, "green": 45, "blue": 52}, "percentage": 20.8}, {"rgb": {"red": 38, "green": 188, "blue": 246}, "percentage": 15.13}, {"rgb": {"red": 179, "green": 208, "blue": 220}, "percentage": 11.54}, {"rgb": {"red": 157, "green": 141, "blue": 119}, "percentage": 11.05}, {"rgb": {"red": 139, "green": 76, "blue": 27}, "percentage": 10.21}]}, "profile_banner_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": true, "default_profile_image": false, "pinned_tweet_ids": [], "pinned_tweet_ids_str": [], "has_custom_timelines": false, "can_dm": null, "following": null, "follow_request_sent": null, "notifications": null, "muting": null, "blocking": null, "blocked_by": null, "want_retweets": null, "advertiser_account_type": "promotable_user", "advertiser_account_service_levels": ["analytics"], "profile_interstitial_type": "", "business_profile_state": "none", "translator_type": "none", "withheld_in_countries": [], "followed_by": null, "ext": {"highlightedLabel": {"r": {"ok": {}}, "ttl": -1}}, "require_some_consent": false}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:25.044429+02:00", "raw_value": {"id": 27676444, "id_str": "27676444", "name": "MMA Junkie", "screen_name": "MMAjunkie", "location": "", "description": "Providing UFC, Bellator and other MMA news and event coverage from across the globe since 2006. Part of @USATODAYSports. https://t.co/O2IXiPDfjC", "url": "https://t.co/KHYAZtihEt", "entities": {"url": {"urls": [{"url": "https://t.co/KHYAZtihEt", "expanded_url": "http://mmajunkie.usatoday.com", "display_url": "mmajunkie.usatoday.com", "indices": [0, 23]}]}, "description": {"urls": [{"url": "https://t.co/O2IXiPDfjC", "expanded_url": "https://www.youtube.com/mmajunkievideo", "display_url": "youtube.com/mmajunkievideo", "indices": [121, 144]}]}}, "protected": false, "followers_count": 596130, "fast_followers_count": 0, "normal_followers_count": 596130, "friends_count": 19, "listed_count": 3925, "created_at": "Mon Mar 30 16:40:51 +0000 2009", "favourites_count": 753, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": true, "statuses_count": 163251, "media_count": 29296, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/378800000727440831/97c2b19d95fcf45fa2a70e42cb66e113_normal.jpeg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000727440831/97c2b19d95fcf45fa2a70e42cb66e113_normal.jpeg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/27676444/1483531799", "profile_image_extensions_alt_text": null, "profile_image_extensions_media_availability": null, "profile_image_extensions_media_color": {"palette": [{"rgb": {"red": 34, "green": 34, "blue": 34}, "percentage": 81.87}, {"rgb": {"red": 110, "green": 147, "blue": 202}, "percentage": 10.2}, {"rgb": {"red": 109, "green": 110, "blue": 114}, "percentage": 4.27}, {"rgb": {"red": 209, "green": 210, "blue": 212}, "percentage": 4.24}, {"rgb": {"red": 31, "green": 49, "blue": 71}, "percentage": 0.18}]}, "profile_image_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_banner_extensions_media_color": {"palette": [{"rgb": {"red": 20, "green": 16, "blue": 26}, "percentage": 47.09}, {"rgb": {"red": 202, "green": 154, "blue": 136}, "percentage": 15.84}, {"rgb": {"red": 111, "green": 55, "blue": 39}, "percentage": 8.16}, {"rgb": {"red": 204, "green": 185, "blue": 229}, "percentage": 6.8}, {"rgb": {"red": 29, "green": 35, "blue": 72}, "percentage": 4.05}]}, "profile_banner_extensions_alt_text": null, "profile_banner_extensions_media_availability": null, "profile_banner_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_link_color": "2FC2EF", "profile_sidebar_border_color": "181A1E", "profile_sidebar_fill_color": "252429", "profile_text_color": "666666", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": false, "default_profile_image": false, "pinned_tweet_ids": [1448120150587330564], "pinned_tweet_ids_str": ["1448120150587330564"], "has_custom_timelines": true, "can_dm": null, "following": null, "follow_request_sent": null, "notifications": null, "muting": null, "blocking": null, "blocked_by": null, "want_retweets": null, "advertiser_account_type": "promotable_user", "advertiser_account_service_levels": ["media_studio"], "profile_interstitial_type": "", "business_profile_state": "none", "translator_type": "none", "withheld_in_countries": [], "followed_by": null, "ext": {"highlightedLabel": {"r": {"ok": {}}, "ttl": -1}}, "require_some_consent": false}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:25.044543+02:00", "raw_value": {"id": 1182033067663331329, "id_str": "1182033067663331329", "name": "Co w Zdrowiu", "screen_name": "CowZdrowiu", "location": "", "description": "https://t.co/8moDoKyRd6 to naj\u015bwie\u017csze informacje o systemie ochrony zdrowia, nowinki #medyczne oraz opinie ekspert\u00f3w.\n\n#zdrowie #pacjenci #finanse #koronawirus #szpital", "url": "https://t.co/14adg0Wrs2", "entities": {"url": {"urls": [{"url": "https://t.co/14adg0Wrs2", "expanded_url": "http://cowzdrowiu.pl", "display_url": "cowzdrowiu.pl", "indices": [0, 23]}]}, "description": {"urls": [{"url": "https://t.co/8moDoKyRd6", "expanded_url": "http://CowZdrowiu.pl", "display_url": "CowZdrowiu.pl", "indices": [0, 23]}]}}, "protected": false, "followers_count": 2925, "fast_followers_count": 0, "normal_followers_count": 2925, "friends_count": 815, "listed_count": 19, "created_at": "Wed Oct 09 20:40:33 +0000 2019", "favourites_count": 2846, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 8547, "media_count": 98, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "F5F8FA", "profile_background_image_url": null, "profile_background_image_url_https": null, "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1215625816660418560/9QdLB5Fg_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1215625816660418560/9QdLB5Fg_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1182033067663331329/1578662598", "profile_image_extensions_media_color": {"palette": [{"rgb": {"red": 255, "green": 255, "blue": 255}, "percentage": 94.8}, {"rgb": {"red": 42, "green": 42, "blue": 42}, "percentage": 3.45}, {"rgb": {"red": 115, "green": 115, "blue": 115}, "percentage": 2.48}]}, "profile_image_extensions_alt_text": null, "profile_image_extensions_media_availability": null, "profile_image_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_banner_extensions_alt_text": null, "profile_banner_extensions_media_availability": null, "profile_banner_extensions_media_color": {"palette": [{"rgb": {"red": 255, "green": 255, "blue": 255}, "percentage": 83.78}, {"rgb": {"red": 24, "green": 58, "blue": 94}, "percentage": 7.56}, {"rgb": {"red": 143, "green": 164, "blue": 176}, "percentage": 3.43}, {"rgb": {"red": 236, "green": 184, "blue": 52}, "percentage": 2.6}, {"rgb": {"red": 248, "green": 232, "blue": 179}, "percentage": 1.76}]}, "profile_banner_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": true, "default_profile_image": false, "pinned_tweet_ids": [], "pinned_tweet_ids_str": [], "has_custom_timelines": false, "can_dm": null, "following": null, "follow_request_sent": null, "notifications": null, "muting": null, "blocking": null, "blocked_by": null, "want_retweets": null, "advertiser_account_type": "promotable_user", "advertiser_account_service_levels": ["analytics"], "profile_interstitial_type": "", "business_profile_state": "none", "translator_type": "none", "withheld_in_countries": [], "followed_by": null, "ext": {"highlightedLabel": {"r": {"ok": {}}, "ttl": -1}}, "require_some_consent": false}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:25.044659+02:00", "raw_value": {"id": 770928613227200512, "id_str": "770928613227200512", "name": "Radio Lublin", "screen_name": "RadioLublin", "location": "Lublin, Polska", "description": "Zadzwo\u0144 lub napisz\n801-501-022                                                                    81 53 64 200         \ninformacje@radio-lublin.pl", "url": "https://t.co/Qm9hkvAvlh", "entities": {"url": {"urls": [{"url": "https://t.co/Qm9hkvAvlh", "expanded_url": "http://www.radiolublin.pl/", "display_url": "radiolublin.pl", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 2142, "fast_followers_count": 0, "normal_followers_count": 2142, "friends_count": 643, "listed_count": 24, "created_at": "Wed Aug 31 10:17:59 +0000 2016", "favourites_count": 338, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 4374, "media_count": 2310, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1393138963926425601/xc4Gf9FK_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1393138963926425601/xc4Gf9FK_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/770928613227200512/1472640483", "profile_image_extensions_alt_text": null, "profile_image_extensions_media_availability": null, "profile_image_extensions_media_color": {"palette": [{"rgb": {"red": 255, "green": 255, "blue": 255}, "percentage": 62.02}, {"rgb": {"red": 0, "green": 155, "blue": 222}, "percentage": 35.73}, {"rgb": {"red": 129, "green": 203, "blue": 231}, "percentage": 1.48}, {"rgb": {"red": 241, "green": 41, "blue": 54}, "percentage": 0.46}, {"rgb": {"red": 105, "green": 192, "blue": 219}, "percentage": 0.22}]}, "profile_image_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_banner_extensions_alt_text": null, "profile_banner_extensions_media_availability": null, "profile_banner_extensions_media_color": {"palette": [{"rgb": {"red": 40, "green": 48, "blue": 63}, "percentage": 46.33}, {"rgb": {"red": 83, "green": 138, "blue": 205}, "percentage": 40.23}, {"rgb": {"red": 212, "green": 224, "blue": 234}, "percentage": 4.65}, {"rgb": {"red": 145, "green": 186, "blue": 226}, "percentage": 4.02}, {"rgb": {"red": 53, "green": 50, "blue": 21}, "percentage": 1.98}]}, "profile_banner_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_link_color": "1B95E0", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "has_extended_profile": false, "default_profile": false, "default_profile_image": false, "pinned_tweet_ids": [], "pinned_tweet_ids_str": [], "has_custom_timelines": false, "can_dm": null, "following": null, "follow_request_sent": null, "notifications": null, "muting": null, "blocking": null, "blocked_by": null, "want_retweets": null, "advertiser_account_type": "promotable_user", "advertiser_account_service_levels": ["analytics"], "profile_interstitial_type": "", "business_profile_state": "none", "translator_type": "none", "withheld_in_countries": [], "followed_by": null, "ext": {"highlightedLabel": {"r": {"ok": {}}, "ttl": -1}}, "require_some_consent": false}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:25.044769+02:00", "raw_value": {"id": 2526713370, "id_str": "2526713370", "name": "JPNZ\ud83c\uddf5\ud83c\uddf1\ud83c\uddf5\ud83c\uddf1\ud83c\uddf5\ud83c\uddf1\ud83c\uddf5\ud83c\uddf1", "screen_name": "Swiadomy86", "location": "", "description": "G\u0142osowa\u0142em na PiS..... przepraszam \ud83d\ude14\nSTOP NAZISTOWSKIEJ SEGREGACJI POLAK\u00d3W\nNIE! DLA LOCKDOWN.U ZABIJAJ\u0104CEGO MA\u0141YCH I \u015aREDNICH PRZEDSI\u0118BIORC\u00d3W!", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 3079, "fast_followers_count": 0, "normal_followers_count": 3079, "friends_count": 2880, "listed_count": 12, "created_at": "Tue May 27 06:34:55 +0000 2014", "favourites_count": 29014, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 44519, "media_count": 3506, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1348261699359563780/-2kE7rzB_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1348261699359563780/-2kE7rzB_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/2526713370/1610403754", "profile_image_extensions_alt_text": null, "profile_image_extensions_media_availability": null, "profile_image_extensions_media_color": {"palette": [{"rgb": {"red": 185, "green": 186, "blue": 183}, "percentage": 34.78}, {"rgb": {"red": 143, "green": 101, "blue": 73}, "percentage": 25.5}, {"rgb": {"red": 19, "green": 23, "blue": 38}, "percentage": 14.65}, {"rgb": {"red": 9, "green": 24, "blue": 85}, "percentage": 4.8}, {"rgb": {"red": 184, "green": 7, "blue": 12}, "percentage": 4.02}]}, "profile_image_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_banner_extensions_alt_text": null, "profile_banner_extensions_media_availability": null, "profile_banner_extensions_media_color": {"palette": [{"rgb": {"red": 0, "green": 0, "blue": 0}, "percentage": 92.24}, {"rgb": {"red": 180, "green": 180, "blue": 180}, "percentage": 4.0}]}, "profile_banner_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_link_color": "FF691F", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "has_extended_profile": false, "default_profile": false, "default_profile_image": false, "pinned_tweet_ids": [1447161655570358273], "pinned_tweet_ids_str": ["1447161655570358273"], "has_custom_timelines": true, "can_dm": null, "following": null, "follow_request_sent": null, "notifications": null, "muting": null, "blocking": null, "blocked_by": null, "want_retweets": null, "advertiser_account_type": "promotable_user", "advertiser_account_service_levels": ["analytics"], "profile_interstitial_type": "", "business_profile_state": "none", "translator_type": "none", "withheld_in_countries": [], "followed_by": null, "ext": {"highlightedLabel": {"r": {"ok": {}}, "ttl": -1}}, "require_some_consent": false}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:25.044889+02:00", "raw_value": {"id": 1088484911818915840, "id_str": "1088484911818915840", "name": "zaspany_34\ud83c\uddf5\ud83c\uddf1", "screen_name": "zaspany_34", "location": "Poland", "description": "Boks, MMA, dobra zimna w\u00f3deczka and skoki narciarskie \ud83e\udd1b\nAmator cooking #zaspanychef \u270a3miasto jest nasze \u2618 \nZaspany ca\u0142e \u017cycie\u270a#nba #BleedGreen 17-Time WC\u2618\ud83c\udfc0\ud83c\udfaf\u2744", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 508, "fast_followers_count": 0, "normal_followers_count": 508, "friends_count": 1570, "listed_count": 1, "created_at": "Thu Jan 24 17:13:20 +0000 2019", "favourites_count": 83101, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 34669, "media_count": 5692, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "F5F8FA", "profile_background_image_url": null, "profile_background_image_url_https": null, "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1414604951532232707/4HxtgFw6_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1414604951532232707/4HxtgFw6_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1088484911818915840/1631080707", "profile_image_extensions_alt_text": null, "profile_image_extensions_media_color": {"palette": [{"rgb": {"red": 223, "green": 212, "blue": 180}, "percentage": 44.61}, {"rgb": {"red": 56, "green": 49, "blue": 41}, "percentage": 42.54}, {"rgb": {"red": 133, "green": 111, "blue": 78}, "percentage": 6.32}, {"rgb": {"red": 137, "green": 162, "blue": 128}, "percentage": 1.04}, {"rgb": {"red": 210, "green": 184, "blue": 114}, "percentage": 0.93}]}, "profile_image_extensions_media_availability": null, "profile_image_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_banner_extensions_media_color": {"palette": [{"rgb": {"red": 96, "green": 83, "blue": 74}, "percentage": 45.22}, {"rgb": {"red": 171, "green": 166, "blue": 171}, "percentage": 42.93}, {"rgb": {"red": 128, "green": 83, "blue": 65}, "percentage": 3.03}, {"rgb": {"red": 60, "green": 69, "blue": 71}, "percentage": 2.14}, {"rgb": {"red": 123, "green": 60, "blue": 58}, "percentage": 1.31}]}, "profile_banner_extensions_alt_text": null, "profile_banner_extensions_media_availability": null, "profile_banner_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": true, "default_profile_image": false, "pinned_tweet_ids": [1203975615323529217], "pinned_tweet_ids_str": ["1203975615323529217"], "has_custom_timelines": true, "can_dm": null, "following": null, "follow_request_sent": null, "notifications": null, "muting": null, "blocking": null, "blocked_by": null, "want_retweets": null, "advertiser_account_type": "promotable_user", "advertiser_account_service_levels": ["analytics"], "profile_interstitial_type": "", "business_profile_state": "none", "translator_type": "none", "withheld_in_countries": [], "followed_by": null, "ext": {"highlightedLabel": {"r": {"ok": {}}, "ttl": -1}}, "require_some_consent": false}}
last_scrap_zero False is_cursor True
need_guest_token True
run request RequestDetails(http_method=<HttpMethod.GET: 1>, url='https://twitter.com/i/api/2/search/adaptive.json', headers={'Authorization': 'Bearer AAAAAAAAAAAAAAAAAAAAANRILgAAAAAAnNwIzUejRCOuH5E6I8xnZz4puTs%3D1Zv7ttfk8LF81IUq16cHjhLTvJu4FA33AGWWjCpTnA', 'x-guest-token': '1448607857604272138'}, params={'include_profile_interstitial_type': '1', 'include_blocking': '1', 'include_blocked_by': '1', 'include_followed_by': '1', 'include_want_retweets': '1', 'include_mute_edge': '1', 'include_can_dm': '1', 'include_can_media_tag': '1', 'skip_status': '1', 'cards_platform': 'Web-12', 'include_cards': '1', 'include_ext_alt_text': 'true', 'include_quote_count': 'true', 'include_reply_count': '1', 'tweet_mode': 'extended', 'include_entities': 'true', 'include_user_entities': 'true', 'include_ext_media_color': 'true', 'include_ext_media_availability': 'true', 'send_error_codes': 'true', 'simple_quoted_tweet': 'true', 'q': '#covid19', 'count': 20, 'query_source': 'typed_query', 'pc': '1', 'spelling_corrections': '1', 'ext': 'mediaStats,highlightedLabel,voiceInfo', 'cursor': 'scroll:thGAVUV0VFVBYBFoCUsq31n6iaKBIY9AMSY8LrAAAB9D-AYk3S8an8AAAAPBQaaAeY1mACFBoPD7sWUAEUGnlaxZZABRQaWf31F7AEFBpZv-eXEAgUGl6okxUgAhQadJ4A1hAFFBpv8PUXoAcUGlMQK5egARQaUOrC1mABFBnrZa1X0AAUGljCzxcgAhQaQy-01kAAFBm9IOZWUAUUGlkrZRcQARQaOrcU1lAFFBpkExxXIAIUGjdwrxfQBBQaZ2xNV7AGFBpdyd2WEAAUGm7VrVZABhQaVEwRVxAAFBpewwHWQAQUGmTHYhZAABQaWYyFFhACFBpUT-8XIAMUGl6LRFZAARQZ7L9iVhACFBpwBY6XMAIUGmPSONZQAxQaQpzqVyAAFBowJB7XoAUUGmAYT1cgAxQaWokjVyACFBpy6DUXsAAUGhantZcwARQaRFyJ1hACFBpsb1JWEAQUGlpbIxfQAhQaXJ3UlmAFFBp6B4kXIAAUGmVQoBZQABQaefDYV7ABFBpR6VwXsAEUGjcGzFcgAhQaS0AclhADFBpQJ38XIAEUGlhfh9cQABQaXDgxVmAEFBnseURWEAMUGlh7jdfQARQaKE5MlhAAFBoJtvpWUAIUGl5S_xcgBBQaeejAVzABFBpdbkuX0AYUGlyK3RcQBBQabsUGV7ABFBpyIhVWYAUUGmjmcRfQAWEVqP95FYCJehgGVE9QSUNTNXgVBBUAAA=='}, timeout=20)
200
{"object_type": "TweetRaw", "download_datetime": "2021-10-14T13:13:26.271146+02:00", "raw_value": {"created_at": "Thu Oct 14 11:13:01 +0000 2021", "id": 1448607771063160834, "id_str": "1448607771063160834", "full_text": "Get your shot. \n#COVID19 https://t.co/cO6A4MFZof", "truncated": false, "display_text_range": [0, 24], "entities": {"hashtags": [{"text": "COVID19", "indices": [16, 24]}], "symbols": [], "user_mentions": [], "urls": [], "media": [{"id": 1448607762624176132, "id_str": "1448607762624176132", "indices": [25, 48], "media_url": "http://pbs.twimg.com/media/FBp9FcYWYAQPFUJ.jpg", "media_url_https": "https://pbs.twimg.com/media/FBp9FcYWYAQPFUJ.jpg", "url": "https://t.co/cO6A4MFZof", "display_url": "pic.twitter.com/cO6A4MFZof", "expanded_url": "https://twitter.com/robertbenzie/status/1448607771063160834/photo/1", "type": "photo", "original_info": {"width": 1512, "height": 2016, "focus_rects": [{"x": 0, "y": 131, "h": 847, "w": 1512}, {"x": 0, "y": 0, "h": 1512, "w": 1512}, {"x": 0, "y": 0, "h": 1724, "w": 1512}, {"x": 0, "y": 0, "h": 2016, "w": 1008}, {"x": 0, "y": 0, "h": 2016, "w": 1512}]}, "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 1512, "h": 2016, "resize": "fit"}, "medium": {"w": 900, "h": 1200, "resize": "fit"}, "small": {"w": 510, "h": 680, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 1448607762624176132, "id_str": "1448607762624176132", "indices": [25, 48], "media_url": "http://pbs.twimg.com/media/FBp9FcYWYAQPFUJ.jpg", "media_url_https": "https://pbs.twimg.com/media/FBp9FcYWYAQPFUJ.jpg", "url": "https://t.co/cO6A4MFZof", "display_url": "pic.twitter.com/cO6A4MFZof", "expanded_url": "https://twitter.com/robertbenzie/status/1448607771063160834/photo/1", "type": "photo", "original_info": {"width": 1512, "height": 2016, "focus_rects": [{"x": 0, "y": 131, "h": 847, "w": 1512}, {"x": 0, "y": 0, "h": 1512, "w": 1512}, {"x": 0, "y": 0, "h": 1724, "w": 1512}, {"x": 0, "y": 0, "h": 2016, "w": 1008}, {"x": 0, "y": 0, "h": 2016, "w": 1512}]}, "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 1512, "h": 2016, "resize": "fit"}, "medium": {"w": 900, "h": 1200, "resize": "fit"}, "small": {"w": 510, "h": 680, "resize": "fit"}}, "media_key": "3_1448607762624176132", "ext_alt_text": null, "ext_media_color": {"palette": [{"rgb": {"red": 165, "green": 157, "blue": 141}, "percentage": 86.78}, {"rgb": {"red": 96, "green": 88, "blue": 76}, "percentage": 13.11}]}, "ext_media_availability": {"status": "available"}, "ext": {"mediaStats": {"r": "Missing", "ttl": -1}}}]}, "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user_id": 271445418, "user_id_str": "271445418", "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 1, "reply_count": 0, "quote_count": 0, "conversation_id": 1448607771063160834, "conversation_id_str": "1448607771063160834", "favorited": false, "retweeted": false, "possibly_sensitive": false, "possibly_sensitive_editable": true, "lang": "en", "supplemental_language": null}}
{"object_type": "TweetRaw", "download_datetime": "2021-10-14T13:13:26.271913+02:00", "raw_value": {"created_at": "Thu Oct 14 11:01:53 +0000 2021", "id": 1448604969519755264, "id_str": "1448604969519755264", "full_text": "All the people saying\n\"now we know\nHerd immunity was policy\" because of a report?\n\nWe also knew because @BorisJohnson literally went on TV &amp; said:\n\"If we allow it to run through the population&amp; sort of,take it on the chin\"\nI'm not sure why everyone is suddenly surprised\n#COVID19 https://t.co/ZMxU8QdrfW", "truncated": false, "display_text_range": [0, 287], "entities": {"hashtags": [{"text": "COVID19", "indices": [279, 287]}], "symbols": [], "user_mentions": [{"screen_name": "BorisJohnson", "name": "Boris Johnson", "id": 3131144855, "id_str": "3131144855", "indices": [104, 117]}], "urls": [], "media": [{"id": 1448604930776969219, "id_str": "1448604930776969219", "indices": [288, 311], "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/1448604930776969219/pu/img/lutEpEMS0OVcp1W5.jpg", "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/1448604930776969219/pu/img/lutEpEMS0OVcp1W5.jpg", "url": "https://t.co/ZMxU8QdrfW", "display_url": "pic.twitter.com/ZMxU8QdrfW", "expanded_url": "https://twitter.com/redsarah99/status/1448604969519755264/video/1", "type": "photo", "original_info": {"width": 1280, "height": 592}, "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 1200, "h": 555, "resize": "fit"}, "small": {"w": 680, "h": 315, "resize": "fit"}, "large": {"w": 1280, "h": 592, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 1448604930776969219, "id_str": "1448604930776969219", "indices": [288, 311], "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/1448604930776969219/pu/img/lutEpEMS0OVcp1W5.jpg", "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/1448604930776969219/pu/img/lutEpEMS0OVcp1W5.jpg", "url": "https://t.co/ZMxU8QdrfW", "display_url": "pic.twitter.com/ZMxU8QdrfW", "expanded_url": "https://twitter.com/redsarah99/status/1448604969519755264/video/1", "type": "video", "original_info": {"width": 1280, "height": 592}, "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 1200, "h": 555, "resize": "fit"}, "small": {"w": 680, "h": 315, "resize": "fit"}, "large": {"w": 1280, "h": 592, "resize": "fit"}}, "video_info": {"aspect_ratio": [80, 37], "duration_millis": 10935, "variants": [{"bitrate": 2176000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/1448604930776969219/pu/vid/1280x592/IXHl22y73Yb8wD4V.mp4?tag=12"}, {"bitrate": 256000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/1448604930776969219/pu/vid/582x270/3nnJMQODqiGSb0qe.mp4?tag=12"}, {"content_type": "application/x-mpegURL", "url": "https://video.twimg.com/ext_tw_video/1448604930776969219/pu/pl/rMLm8Ees089drIU3.m3u8?tag=12&container=fmp4"}, {"bitrate": 832000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/1448604930776969219/pu/vid/778x360/Mz7ktJOZEj-nUDIu.mp4?tag=12"}]}, "media_key": "7_1448604930776969219", "ext_alt_text": null, "ext_media_availability": {"status": "available"}, "ext_media_color": {"palette": [{"rgb": {"red": 4, "green": 7, "blue": 22}, "percentage": 43.17}, {"rgb": {"red": 240, "green": 199, "blue": 177}, "percentage": 19.31}, {"rgb": {"red": 106, "green": 104, "blue": 125}, "percentage": 16.66}, {"rgb": {"red": 129, "green": 96, "blue": 93}, "percentage": 5.43}, {"rgb": {"red": 201, "green": 119, "blue": 115}, "percentage": 5.32}]}, "ext": {"mediaStats": {"r": {"ok": {"viewCount": "147"}}, "ttl": -1}}, "additional_media_info": {"monetizable": false}}]}, "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user_id": 189072881, "user_id_str": "189072881", "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 24, "favorite_count": 32, "reply_count": 2, "quote_count": 1, "conversation_id": 1448604969519755264, "conversation_id_str": "1448604969519755264", "favorited": false, "retweeted": false, "possibly_sensitive": false, "possibly_sensitive_editable": true, "lang": "en", "supplemental_language": null}}
{"object_type": "TweetRaw", "download_datetime": "2021-10-14T13:13:26.272035+02:00", "raw_value": {"created_at": "Thu Oct 14 11:08:13 +0000 2021", "id": 1448606562797428736, "id_str": "1448606562797428736", "full_text": "Experts want data before children are vaccinated against #COVID19, from vaccine manufacturers close to the No Data Administration in charge of India.\nHow do you think this will play out, given our track record?????", "truncated": false, "display_text_range": [0, 214], "entities": {"hashtags": [{"text": "COVID19", "indices": [57, 65]}], "symbols": [], "user_mentions": [], "urls": []}, "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user_id": 48706493, "user_id_str": "48706493", "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 3, "favorite_count": 6, "reply_count": 1, "quote_count": 0, "conversation_id": 1448606562797428736, "conversation_id_str": "1448606562797428736", "favorited": false, "retweeted": false, "lang": "en", "supplemental_language": null}}
{"object_type": "TweetRaw", "download_datetime": "2021-10-14T13:13:26.272192+02:00", "raw_value": {"created_at": "Wed Oct 13 21:50:00 +0000 2021", "id": 1448405688858730503, "id_str": "1448405688858730503", "full_text": "Watch out Brians. #COVID19 https://t.co/55B0S9yoaV", "truncated": false, "display_text_range": [0, 26], "entities": {"hashtags": [{"text": "COVID19", "indices": [18, 26]}], "symbols": [], "user_mentions": [], "urls": [], "media": [{"id": 1448405585448210434, "id_str": "1448405585448210434", "indices": [27, 50], "media_url": "http://pbs.twimg.com/media/FBnFNLtVEAI70a6.png", "media_url_https": "https://pbs.twimg.com/media/FBnFNLtVEAI70a6.png", "url": "https://t.co/55B0S9yoaV", "display_url": "pic.twitter.com/55B0S9yoaV", "expanded_url": "https://twitter.com/shanselman/status/1448405688858730503/photo/1", "type": "photo", "original_info": {"width": 634, "height": 501, "focus_rects": [{"x": 0, "y": 28, "h": 355, "w": 634}, {"x": 0, "y": 0, "h": 501, "w": 501}, {"x": 0, "y": 0, "h": 501, "w": 439}, {"x": 0, "y": 0, "h": 501, "w": 251}, {"x": 0, "y": 0, "h": 501, "w": 634}]}, "sizes": {"large": {"w": 634, "h": 501, "resize": "fit"}, "small": {"w": 634, "h": 501, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 634, "h": 501, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 1448405585448210434, "id_str": "1448405585448210434", "indices": [27, 50], "media_url": "http://pbs.twimg.com/media/FBnFNLtVEAI70a6.png", "media_url_https": "https://pbs.twimg.com/media/FBnFNLtVEAI70a6.png", "url": "https://t.co/55B0S9yoaV", "display_url": "pic.twitter.com/55B0S9yoaV", "expanded_url": "https://twitter.com/shanselman/status/1448405688858730503/photo/1", "type": "photo", "original_info": {"width": 634, "height": 501, "focus_rects": [{"x": 0, "y": 28, "h": 355, "w": 634}, {"x": 0, "y": 0, "h": 501, "w": 501}, {"x": 0, "y": 0, "h": 501, "w": 439}, {"x": 0, "y": 0, "h": 501, "w": 251}, {"x": 0, "y": 0, "h": 501, "w": 634}]}, "sizes": {"large": {"w": 634, "h": 501, "resize": "fit"}, "small": {"w": 634, "h": 501, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 634, "h": 501, "resize": "fit"}}, "media_key": "3_1448405585448210434", "ext_media_color": {"palette": [{"rgb": {"red": 0, "green": 0, "blue": 0}, "percentage": 92.54}, {"rgb": {"red": 121, "green": 121, "blue": 121}, "percentage": 6.25}, {"rgb": {"red": 239, "green": 238, "blue": 234}, "percentage": 0.71}, {"rgb": {"red": 46, "green": 78, "blue": 114}, "percentage": 0.2}, {"rgb": {"red": 71, "green": 54, "blue": 45}, "percentage": 0.19}]}, "ext_alt_text": "COVID is a scam and the vaccine is bring drive out to control your Brians.", "ext_media_availability": {"status": "available"}, "ext": {"mediaStats": {"r": "Missing", "ttl": -1}}}]}, "source": "<a href=\"https://mobile.twitter.com\" rel=\"nofollow\">Twitter Web App</a>", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user_id": 5676102, "user_id_str": "5676102", "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 115, "favorite_count": 1564, "reply_count": 148, "quote_count": 36, "conversation_id": 1448405688858730503, "conversation_id_str": "1448405688858730503", "favorited": false, "retweeted": false, "possibly_sensitive": false, "possibly_sensitive_editable": true, "lang": "en", "supplemental_language": null}}
{"object_type": "TweetRaw", "download_datetime": "2021-10-14T13:13:26.272291+02:00", "raw_value": {"created_at": "Thu Oct 14 11:12:06 +0000 2021", "id": 1448607541525716993, "id_str": "1448607541525716993", "full_text": "Congratulations to Professor Sir Peter Horby on being awarded the Faculty of Public Health Alwyn Smith Prize! \ud83d\udc4f\n\nHe is awarded for his contributions to the clinical treatment of #COVID19, his focus on health inequalities, and the success of the RECOVERY trial.\n\nFind out more\u2b07\ufe0f", "truncated": false, "display_text_range": [0, 277], "entities": {"hashtags": [{"text": "COVID19", "indices": [178, 186]}], "symbols": [], "user_mentions": [], "urls": []}, "source": "<a href=\"https://ads-api.twitter.com\" rel=\"nofollow\">Twitter for Advertisers.</a>", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user_id": 48289662, "user_id_str": "48289662", "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 1, "favorite_count": 4, "reply_count": 0, "quote_count": 0, "conversation_id": 1448607541525716993, "conversation_id_str": "1448607541525716993", "favorited": false, "retweeted": false, "possibly_sensitive": false, "possibly_sensitive_editable": true, "card": {"name": "unified_card", "url": "card://1448607420750651394", "card_type_url": "http://card-type-url-is-deprecated.invalid", "binding_values": {"unified_card": {"type": "STRING", "string_value": "{\"type\":\"image_website\",\"component_objects\":{\"details_1\":{\"type\":\"details\",\"data\":{\"title\":{\"content\":\"Click to Read: Oxford's Professor Sir Peter Horby awarded the...\",\"is_rtl\":false},\"subtitle\":{\"content\":\"ox.ac.uk\",\"is_rtl\":false},\"destination\":\"browser_1\"}},\"media_1\":{\"type\":\"media\",\"data\":{\"id\":\"19_1448607203187994624\",\"destination\":\"browser_1\"}}},\"destination_objects\":{\"browser_1\":{\"type\":\"browser\",\"data\":{\"url_data\":{\"url\":\"https://www.ox.ac.uk/news/2021-10-14-peter-horby-receives-prestigious-award-outstanding-service-public-health\",\"vanity\":\"ox.ac.uk\"}}}},\"components\":[\"media_1\",\"details_1\"],\"media_entities\":{\"19_1448607203187994624\":{\"id\":1448607203187994624,\"id_str\":\"1448607203187994624\",\"indices\":[0,0],\"media_url\":\"\",\"media_url_https\":\"https://pbs.twimg.com/ad_img/1448607203187994624/mZ6m1GZ0?format=png&name=orig\",\"url\":\"\",\"display_url\":\"\",\"expanded_url\":\"\",\"type\":\"photo\",\"original_info\":{\"width\":800,\"height\":800},\"sizes\":{},\"source_user_id\":48289662,\"source_user_id_str\":\"48289662\",\"media_key\":\"19_1448607203187994624\",\"ext\":{\"mediaColor\":{\"r\":{\"ok\":{\"palette\":[{\"rgb\":{\"red\":1,\"green\":13,\"blue\":50},\"percentage\":44.29},{\"rgb\":{\"red\":236,\"green\":213,\"blue\":159},\"percentage\":39.32},{\"rgb\":{\"red\":20,\"green\":19,\"blue\":22},\"percentage\":5.57},{\"rgb\":{\"red\":148,\"green\":148,\"blue\":153},\"percentage\":4.97},{\"rgb\":{\"red\":6,\"green\":6,\"blue\":64},\"percentage\":1.72}]}},\"ttl\":-1}}}}}"}, "card_url": {"type": "STRING", "string_value": "https://twitter.com", "scribe_key": "card_url"}}, "card_platform": {"platform": {"device": {"name": "Swift", "version": "12"}, "audience": {"name": "production", "bucket": null}}}}, "lang": "en", "supplemental_language": null}}
{"object_type": "TweetRaw", "download_datetime": "2021-10-14T13:13:26.272366+02:00", "raw_value": {"created_at": "Thu Oct 14 07:50:16 +0000 2021", "id": 1448556750349684738, "id_str": "1448556750349684738", "full_text": "Polecam. \ud83d\udc4d#covid19 #szczepimysie", "truncated": false, "display_text_range": [0, 32], "entities": {"hashtags": [{"text": "covid19", "indices": [10, 18]}, {"text": "szczepimysie", "indices": [19, 32]}], "symbols": [], "user_mentions": [], "urls": []}, "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user_id": 2387086992, "user_id_str": "2387086992", "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1448555822586515457, "quoted_status_id_str": "1448555822586515457", "quoted_status_permalink": {"url": "https://t.co/zFOeu2DhA3", "expanded": "https://twitter.com/residuum05/status/1448555822586515457", "display": "twitter.com/residuum05/sta\u2026"}, "retweet_count": 0, "favorite_count": 0, "reply_count": 0, "quote_count": 0, "conversation_id": 1448556750349684738, "conversation_id_str": "1448556750349684738", "favorited": false, "retweeted": false, "lang": "pl", "supplemental_language": null}}
{"object_type": "TweetRaw", "download_datetime": "2021-10-14T13:13:26.272442+02:00", "raw_value": {"created_at": "Thu Oct 14 03:23:36 +0000 2021", "id": 1448489638750994434, "id_str": "1448489638750994434", "full_text": "Finally out!! The much-awaited preprint on mixing &amp; matching of #covid19 vaccines!!!\n\n\u2b50\ufe0fTakeaways\u2b50\ufe0f\n1. All appear safe\n2. Moderna seems best for booster (at standard 100mcg dose) for all types of vaxx\n3. But no clinical (illness) outcomes, just Ab titers\n\nhttps://t.co/ZAvAmcGgvG", "truncated": false, "display_text_range": [0, 283], "entities": {"hashtags": [{"text": "covid19", "indices": [68, 76]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/ZAvAmcGgvG", "expanded_url": "https://www.medrxiv.org/content/10.1101/2021.10.10.21264827v1.full.pdf", "display_url": "medrxiv.org/content/10.110\u2026", "indices": [260, 283]}]}, "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user_id": 233788247, "user_id_str": "233788247", "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 65, "favorite_count": 204, "reply_count": 7, "quote_count": 3, "conversation_id": 1448489638750994434, "conversation_id_str": "1448489638750994434", "favorited": false, "retweeted": false, "possibly_sensitive": false, "possibly_sensitive_editable": true, "lang": "en", "supplemental_language": null, "self_thread": {"id": 1448489638750994434, "id_str": "1448489638750994434"}}}
{"object_type": "TweetRaw", "download_datetime": "2021-10-14T13:13:26.272581+02:00", "raw_value": {"created_at": "Thu Oct 14 08:51:05 +0000 2021", "id": 1448572055906095106, "id_str": "1448572055906095106", "full_text": "Dzisiaj pad\u0142 rekord zaka\u017ce\u0144.\nhttps://t.co/EFMVUXhp5F\n#COVID19 #COVID @V2019N", "truncated": false, "display_text_range": [0, 76], "entities": {"hashtags": [{"text": "COVID19", "indices": [53, 61]}, {"text": "COVID", "indices": [62, 68]}], "symbols": [], "user_mentions": [{"screen_name": "V2019N", "name": "COVID19", "id": 1218324988966531072, "id_str": "1218324988966531072", "indices": [69, 76]}], "urls": [{"url": "https://t.co/EFMVUXhp5F", "expanded_url": "https://ipolska24.pl/kolejny-dzien-ze-wzrostem-zachorowan-i-bardzo-duzo-ofiar/", "display_url": "ipolska24.pl/kolejny-dzien-\u2026", "indices": [29, 52]}]}, "source": "<a href=\"https://mobile.twitter.com\" rel=\"nofollow\">Twitter Web App</a>", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user_id": 984032682735620096, "user_id_str": "984032682735620096", "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "reply_count": 0, "quote_count": 0, "conversation_id": 1448572055906095106, "conversation_id_str": "1448572055906095106", "favorited": false, "retweeted": false, "possibly_sensitive": false, "possibly_sensitive_editable": true, "card": {"name": "summary_large_image", "url": "https://t.co/EFMVUXhp5F", "card_type_url": "http://card-type-url-is-deprecated.invalid", "binding_values": {"vanity_url": {"type": "STRING", "string_value": "ipolska24.pl", "scribe_key": "vanity_url"}, "domain": {"type": "STRING", "string_value": "ipolska24.pl"}, "title": {"type": "STRING", "string_value": "Dzisiaj pad\u0142 rekord zaka\u017ce\u0144. - iPolska24"}, "description": {"type": "STRING", "string_value": "Mamy 3000 nowych i potwierdzonych przypadk\u00f3w zaka\u017cenia #koronawirus z wojew\u00f3dztw: lubelskiego (671), mazowieckiego (539), podlaskiego (313), \u0142\u00f3dzkiego (167), pomorskiego (161), zachodniopomorskiego..."}, "thumbnail_image_small": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448571813265645569/gDayq9tX?format=jpg&name=100x100", "width": 100, "height": 67, "alt": null}}, "thumbnail_image": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448571813265645569/gDayq9tX?format=jpg&name=280x150", "width": 225, "height": 150, "alt": null}}, "thumbnail_image_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448571813265645569/gDayq9tX?format=jpg&name=800x320_1", "width": 480, "height": 320, "alt": null}}, "thumbnail_image_x_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448571813265645569/gDayq9tX?format=png&name=2048x2048_2_exp", "width": 1000, "height": 667, "alt": null}}, "thumbnail_image_original": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448571813265645569/gDayq9tX?format=jpg&name=orig", "width": 1000, "height": 667, "alt": null}}, "summary_photo_image_small": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448571813265645569/gDayq9tX?format=jpg&name=386x202", "width": 386, "height": 202, "alt": null}}, "summary_photo_image": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448571813265645569/gDayq9tX?format=jpg&name=600x314", "width": 600, "height": 314, "alt": null}}, "summary_photo_image_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448571813265645569/gDayq9tX?format=jpg&name=800x419", "width": 800, "height": 419, "alt": null}}, "summary_photo_image_x_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448571813265645569/gDayq9tX?format=png&name=2048x2048_2_exp", "width": 1000, "height": 667, "alt": null}}, "summary_photo_image_original": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448571813265645569/gDayq9tX?format=jpg&name=orig", "width": 1000, "height": 667, "alt": null}}, "photo_image_full_size_small": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448571813265645569/gDayq9tX?format=jpg&name=386x202", "width": 386, "height": 202, "alt": null}}, "photo_image_full_size": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448571813265645569/gDayq9tX?format=jpg&name=600x314", "width": 600, "height": 314, "alt": null}}, "photo_image_full_size_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448571813265645569/gDayq9tX?format=jpg&name=800x419", "width": 800, "height": 419, "alt": null}}, "photo_image_full_size_x_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448571813265645569/gDayq9tX?format=png&name=2048x2048_2_exp", "width": 1000, "height": 667, "alt": null}}, "photo_image_full_size_original": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448571813265645569/gDayq9tX?format=jpg&name=orig", "width": 1000, "height": 667, "alt": null}}, "card_url": {"type": "STRING", "string_value": "https://t.co/EFMVUXhp5F", "scribe_key": "card_url"}}, "card_platform": {"platform": {"device": {"name": "Swift", "version": "12"}, "audience": {"name": "production", "bucket": null}}}}, "lang": "pl", "supplemental_language": null}}
{"object_type": "TweetRaw", "download_datetime": "2021-10-14T13:13:26.272724+02:00", "raw_value": {"created_at": "Thu Oct 14 02:11:21 +0000 2021", "id": 1448471459039375365, "id_str": "1448471459039375365", "full_text": "Since the constant clashes of SAC &amp; PDF defenders were occured in #Sagaing region, over 70000 refugees are facing shortages of food &amp; lack of health care. Even they badly suffered from third wave of #COVID19, SAC cut off the transport of food &amp; medical supplies.\n\n#Oct14Coup https://t.co/cD6O67iLzX", "truncated": false, "display_text_range": [0, 286], "entities": {"hashtags": [{"text": "Sagaing", "indices": [70, 78]}, {"text": "COVID19", "indices": [207, 215]}, {"text": "Oct14Coup", "indices": [276, 286]}], "symbols": [], "user_mentions": [], "urls": [], "media": [{"id": 1448471455327424514, "id_str": "1448471455327424514", "indices": [287, 310], "media_url": "http://pbs.twimg.com/media/FBoBHUIVkAIrFZG.jpg", "media_url_https": "https://pbs.twimg.com/media/FBoBHUIVkAIrFZG.jpg", "url": "https://t.co/cD6O67iLzX", "display_url": "pic.twitter.com/cD6O67iLzX", "expanded_url": "https://twitter.com/pyae_zinburma/status/1448471459039375365/photo/1", "type": "photo", "original_info": {"width": 719, "height": 372, "focus_rects": [{"x": 55, "y": 0, "h": 372, "w": 664}, {"x": 347, "y": 0, "h": 372, "w": 372}, {"x": 393, "y": 0, "h": 372, "w": 326}, {"x": 533, "y": 0, "h": 372, "w": 186}, {"x": 0, "y": 0, "h": 372, "w": 719}]}, "sizes": {"large": {"w": 719, "h": 372, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 719, "h": 372, "resize": "fit"}, "small": {"w": 680, "h": 352, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 1448471455327424514, "id_str": "1448471455327424514", "indices": [287, 310], "media_url": "http://pbs.twimg.com/media/FBoBHUIVkAIrFZG.jpg", "media_url_https": "https://pbs.twimg.com/media/FBoBHUIVkAIrFZG.jpg", "url": "https://t.co/cD6O67iLzX", "display_url": "pic.twitter.com/cD6O67iLzX", "expanded_url": "https://twitter.com/pyae_zinburma/status/1448471459039375365/photo/1", "type": "photo", "original_info": {"width": 719, "height": 372, "focus_rects": [{"x": 55, "y": 0, "h": 372, "w": 664}, {"x": 347, "y": 0, "h": 372, "w": 372}, {"x": 393, "y": 0, "h": 372, "w": 326}, {"x": 533, "y": 0, "h": 372, "w": 186}, {"x": 0, "y": 0, "h": 372, "w": 719}]}, "sizes": {"large": {"w": 719, "h": 372, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 719, "h": 372, "resize": "fit"}, "small": {"w": 680, "h": 352, "resize": "fit"}}, "media_key": "3_1448471455327424514", "ext_alt_text": null, "ext_media_availability": {"status": "available"}, "ext_media_color": {"palette": [{"rgb": {"red": 159, "green": 151, "blue": 134}, "percentage": 31.03}, {"rgb": {"red": 78, "green": 72, "blue": 57}, "percentage": 21.38}, {"rgb": {"red": 135, "green": 169, "blue": 193}, "percentage": 7.35}, {"rgb": {"red": 147, "green": 112, "blue": 106}, "percentage": 7.27}, {"rgb": {"red": 109, "green": 84, "blue": 56}, "percentage": 4.72}]}, "ext": {"mediaStats": {"r": "Missing", "ttl": -1}}}]}, "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user_id": 1430030382519386112, "user_id_str": "1430030382519386112", "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 55, "favorite_count": 42, "reply_count": 0, "quote_count": 17, "conversation_id": 1448471459039375365, "conversation_id_str": "1448471459039375365", "favorited": false, "retweeted": false, "possibly_sensitive": false, "possibly_sensitive_editable": true, "lang": "en", "supplemental_language": null}}
{"object_type": "TweetRaw", "download_datetime": "2021-10-14T13:13:26.272957+02:00", "raw_value": {"created_at": "Thu Oct 14 03:35:12 +0000 2021", "id": 1448492559576207360, "id_str": "1448492559576207360", "full_text": "Around 50,000 #Australians have signed a petition calling on the federal Parliament to strip the country\u2019s medical accreditation board of the power to silence health practitioners from criticising the efficacy of #COVID19 vaccines and #vaccinemandates.\n\nhttps://t.co/2qSe4FnM2m", "truncated": false, "display_text_range": [0, 277], "entities": {"hashtags": [{"text": "Australians", "indices": [14, 26]}, {"text": "COVID19", "indices": [213, 221]}, {"text": "vaccinemandates", "indices": [235, 251]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/2qSe4FnM2m", "expanded_url": "https://www.theepochtimes.com/50000-australians-call-for-covid-19-vaccine-gag-orders-on-medical-practitioners-to-end_4048154.html?utm_campaign=socialshare_twitter&utm_source=twitter.com", "display_url": "theepochtimes.com/50000-australi\u2026", "indices": [254, 277]}]}, "source": "<a href=\"https://hypefury.com\" rel=\"nofollow\">Hypefury</a>", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user_id": 1288653700349571072, "user_id_str": "1288653700349571072", "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 44, "favorite_count": 127, "reply_count": 3, "quote_count": 4, "conversation_id": 1448492559576207360, "conversation_id_str": "1448492559576207360", "favorited": false, "retweeted": false, "possibly_sensitive": false, "possibly_sensitive_editable": true, "card": {"name": "summary_large_image", "url": "https://t.co/2qSe4FnM2m", "card_type_url": "http://card-type-url-is-deprecated.invalid", "binding_values": {"vanity_url": {"type": "STRING", "string_value": "theepochtimes.com", "scribe_key": "vanity_url"}, "amp": {"type": "BOOLEAN", "boolean_value": true}, "domain": {"type": "STRING", "string_value": "www.theepochtimes.com"}, "creator": {"type": "USER", "user_value": {"id_str": "29097819", "path": []}}, "site": {"type": "USER", "user_value": {"id_str": "29097819", "path": []}, "scribe_key": "publisher_id"}, "title": {"type": "STRING", "string_value": "50,000 Australians Call for COVID-19 Vaccine Gag Orders on Medical Practitioners to End"}, "description": {"type": "STRING", "string_value": "Around 50,000 Australians have signed a petition calling on the federal Parliament to strip the country\u2019s medical accreditation ..."}, "thumbnail_image_small": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448485953060753412/_0Xwq7Mb?format=jpg&name=100x100", "width": 100, "height": 67, "alt": null}}, "thumbnail_image": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448485953060753412/_0Xwq7Mb?format=jpg&name=280x150", "width": 225, "height": 150, "alt": null}}, "thumbnail_image_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448485953060753412/_0Xwq7Mb?format=jpg&name=800x320_1", "width": 480, "height": 320, "alt": null}}, "thumbnail_image_x_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448485953060753412/_0Xwq7Mb?format=png&name=2048x2048_2_exp", "width": 1024, "height": 683, "alt": null}}, "thumbnail_image_original": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448485953060753412/_0Xwq7Mb?format=jpg&name=orig", "width": 1024, "height": 683, "alt": null}}, "summary_photo_image_small": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448485953060753412/_0Xwq7Mb?format=jpg&name=386x202", "width": 386, "height": 202, "alt": null}}, "summary_photo_image": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448485953060753412/_0Xwq7Mb?format=jpg&name=600x314", "width": 600, "height": 314, "alt": null}}, "summary_photo_image_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448485953060753412/_0Xwq7Mb?format=jpg&name=800x419", "width": 800, "height": 419, "alt": null}}, "summary_photo_image_x_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448485953060753412/_0Xwq7Mb?format=png&name=2048x2048_2_exp", "width": 1024, "height": 683, "alt": null}}, "summary_photo_image_original": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448485953060753412/_0Xwq7Mb?format=jpg&name=orig", "width": 1024, "height": 683, "alt": null}}, "photo_image_full_size_small": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448485953060753412/_0Xwq7Mb?format=jpg&name=386x202", "width": 386, "height": 202, "alt": null}}, "photo_image_full_size": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448485953060753412/_0Xwq7Mb?format=jpg&name=600x314", "width": 600, "height": 314, "alt": null}}, "photo_image_full_size_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448485953060753412/_0Xwq7Mb?format=jpg&name=800x419", "width": 800, "height": 419, "alt": null}}, "photo_image_full_size_x_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448485953060753412/_0Xwq7Mb?format=png&name=2048x2048_2_exp", "width": 1024, "height": 683, "alt": null}}, "photo_image_full_size_original": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448485953060753412/_0Xwq7Mb?format=jpg&name=orig", "width": 1024, "height": 683, "alt": null}}, "card_url": {"type": "STRING", "string_value": "https://t.co/2qSe4FnM2m", "scribe_key": "card_url"}}, "users": {"29097819": {"id": 29097819, "id_str": "29097819", "name": "The Epoch Times", "screen_name": "EpochTimes", "location": "New York, USA", "description": "Independent, award-winning reporting based on Truth and Tradition. Free newsletter: https://t.co/0F3JANwb8P | Telegram: https://t.co/Hmk1epY4Kv | Watch: https://t.co/M1G2gEVJmq", "url": "https://t.co/udZgeB9zvZ", "entities": {"url": {"urls": [{"url": "https://t.co/udZgeB9zvZ", "expanded_url": "https://subscribe.epochtimes.com/", "display_url": "subscribe.epochtimes.com", "indices": [0, 23]}]}, "description": {"urls": [{"url": "https://t.co/0F3JANwb8P", "expanded_url": "http://ept.ms/\u2013Newsletters", "display_url": "ept.ms/\u2013Newsletters", "indices": [84, 107]}, {"url": "https://t.co/Hmk1epY4Kv", "expanded_url": "http://t.me/epochtimes", "display_url": "t.me/epochtimes", "indices": [120, 143]}, {"url": "https://t.co/M1G2gEVJmq", "expanded_url": "http://epochtv.com", "display_url": "epochtv.com", "indices": [153, 176]}]}}, "protected": false, "followers_count": 429648, "fast_followers_count": 0, "normal_followers_count": 429648, "friends_count": 80, "listed_count": 2756, "created_at": "Sun Apr 05 23:54:55 +0000 2009", "favourites_count": 36344, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": true, "statuses_count": 206931, "media_count": 13665, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "FFFFFF", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme4/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme4/bg.gif", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/954141295093698560/9x68uifu_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/954141295093698560/9x68uifu_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/29097819/1516660974", "profile_image_extensions_alt_text": null, "profile_image_extensions_media_color": {"palette": [{"rgb": {"red": 0, "green": 58, "blue": 108}, "percentage": 93.18}, {"rgb": {"red": 243, "green": 247, "blue": 248}, "percentage": 6.21}, {"rgb": {"red": 123, "green": 155, "blue": 180}, "percentage": 0.54}]}, "profile_image_extensions_media_availability": null, "profile_image_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_banner_extensions_alt_text": null, "profile_banner_extensions_media_availability": null, "profile_banner_extensions_media_color": {"palette": [{"rgb": {"red": 109, "green": 147, "blue": 196}, "percentage": 27.51}, {"rgb": {"red": 95, "green": 61, "blue": 32}, "percentage": 19.0}, {"rgb": {"red": 183, "green": 198, "blue": 212}, "percentage": 7.81}, {"rgb": {"red": 150, "green": 96, "blue": 36}, "percentage": 7.3}, {"rgb": {"red": 210, "green": 186, "blue": 148}, "percentage": 7.29}]}, "profile_banner_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_link_color": "00218F", "profile_sidebar_border_color": "FFFFFF", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "3C3940", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": false, "default_profile_image": false, "pinned_tweet_ids": [1418577899142225927], "pinned_tweet_ids_str": ["1418577899142225927"], "has_custom_timelines": false, "can_dm": null, "following": null, "follow_request_sent": null, "notifications": null, "muting": null, "blocking": null, "blocked_by": null, "want_retweets": null, "advertiser_account_type": "promotable_user", "advertiser_account_service_levels": ["mms", "smb", "subscription"], "profile_interstitial_type": "", "business_profile_state": "none", "translator_type": "none", "withheld_in_countries": [], "followed_by": null, "ext": {"highlightedLabel": {"r": {"ok": {}}, "ttl": -1}}, "require_some_consent": false}}, "card_platform": {"platform": {"device": {"name": "Swift", "version": "12"}, "audience": {"name": "production", "bucket": null}}}}, "lang": "en", "supplemental_language": null}}
{"object_type": "TweetRaw", "download_datetime": "2021-10-14T13:13:26.273035+02:00", "raw_value": {"created_at": "Thu Oct 14 11:09:22 +0000 2021", "id": 1448606855459184640, "id_str": "1448606855459184640", "full_text": "Some earlier restrictions have also been relaxed starting today. Shops will be allowed to stay open till 11 pm from October 14. Religious places can be opened on Fridays, Saturdays and Sundays. Tuition centres and job fairs can be conducted adhereing to #COVID19 protocols.", "truncated": false, "display_text_range": [0, 273], "entities": {"hashtags": [{"text": "COVID19", "indices": [254, 262]}], "symbols": [], "user_mentions": [], "urls": []}, "source": "<a href=\"http://www.socialflow.com\" rel=\"nofollow\">SocialFlow</a>", "in_reply_to_status_id": 1448606540336873473, "in_reply_to_status_id_str": "1448606540336873473", "in_reply_to_user_id": 20751449, "in_reply_to_user_id_str": "20751449", "in_reply_to_screen_name": "the_hindu", "user_id": 20751449, "user_id_str": "20751449", "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 2, "favorite_count": 12, "reply_count": 0, "quote_count": 0, "conversation_id": 1448606000915828739, "conversation_id_str": "1448606000915828739", "favorited": false, "retweeted": false, "lang": "en", "supplemental_language": null, "self_thread": {"id": 1448606000915828739, "id_str": "1448606000915828739"}}}
{"object_type": "TweetRaw", "download_datetime": "2021-10-14T13:13:26.273224+02:00", "raw_value": {"created_at": "Thu Oct 14 07:46:35 +0000 2021", "id": 1448555822586515457, "id_str": "1448555822586515457", "full_text": "O\u015bwiadczenie profesora Rutkowskiego w sprawie nagonki Naczelnej Izby Lekraskiej na lekarzy\n\nhttps://t.co/f1DTL8Ivma https://t.co/DFRbLGwZAc", "truncated": false, "display_text_range": [0, 115], "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/f1DTL8Ivma", "expanded_url": "https://ordomedicus.org/oswiadczenie-profesora-rutkowskiego-w-sprawie-nagonki-naczelnej-izby-lekraskiej-na-lekarzy/", "display_url": "ordomedicus.org/oswiadczenie-p\u2026", "indices": [92, 115]}], "media": [{"id": 1448555817427423233, "id_str": "1448555817427423233", "indices": [116, 139], "media_url": "http://pbs.twimg.com/media/FBpN11cWUAEZ9Xa.jpg", "media_url_https": "https://pbs.twimg.com/media/FBpN11cWUAEZ9Xa.jpg", "url": "https://t.co/DFRbLGwZAc", "display_url": "pic.twitter.com/DFRbLGwZAc", "expanded_url": "https://twitter.com/residuum05/status/1448555822586515457/photo/1", "type": "photo", "original_info": {"width": 768, "height": 1024, "focus_rects": [{"x": 0, "y": 322, "h": 430, "w": 768}, {"x": 0, "y": 153, "h": 768, "w": 768}, {"x": 0, "y": 99, "h": 876, "w": 768}, {"x": 0, "y": 0, "h": 1024, "w": 512}, {"x": 0, "y": 0, "h": 1024, "w": 768}]}, "sizes": {"large": {"w": 768, "h": 1024, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 768, "h": 1024, "resize": "fit"}, "small": {"w": 510, "h": 680, "resize": "fit"}}}, {"id": 1448555817465225216, "id_str": "1448555817465225216", "indices": [116, 139], "media_url": "http://pbs.twimg.com/media/FBpN11lXIAARpzQ.jpg", "media_url_https": "https://pbs.twimg.com/media/FBpN11lXIAARpzQ.jpg", "url": "https://t.co/DFRbLGwZAc", "display_url": "pic.twitter.com/DFRbLGwZAc", "expanded_url": "https://twitter.com/residuum05/status/1448555822586515457/photo/1", "type": "photo", "original_info": {"width": 432, "height": 508, "focus_rects": [{"x": 0, "y": 69, "h": 242, "w": 432}, {"x": 0, "y": 0, "h": 432, "w": 432}, {"x": 0, "y": 0, "h": 492, "w": 432}, {"x": 139, "y": 0, "h": 508, "w": 254}, {"x": 0, "y": 0, "h": 508, "w": 432}]}, "sizes": {"small": {"w": 432, "h": 508, "resize": "fit"}, "medium": {"w": 432, "h": 508, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 432, "h": 508, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 1448555817427423233, "id_str": "1448555817427423233", "indices": [116, 139], "media_url": "http://pbs.twimg.com/media/FBpN11cWUAEZ9Xa.jpg", "media_url_https": "https://pbs.twimg.com/media/FBpN11cWUAEZ9Xa.jpg", "url": "https://t.co/DFRbLGwZAc", "display_url": "pic.twitter.com/DFRbLGwZAc", "expanded_url": "https://twitter.com/residuum05/status/1448555822586515457/photo/1", "type": "photo", "original_info": {"width": 768, "height": 1024, "focus_rects": [{"x": 0, "y": 322, "h": 430, "w": 768}, {"x": 0, "y": 153, "h": 768, "w": 768}, {"x": 0, "y": 99, "h": 876, "w": 768}, {"x": 0, "y": 0, "h": 1024, "w": 512}, {"x": 0, "y": 0, "h": 1024, "w": 768}]}, "sizes": {"large": {"w": 768, "h": 1024, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 768, "h": 1024, "resize": "fit"}, "small": {"w": 510, "h": 680, "resize": "fit"}}, "media_key": "3_1448555817427423233", "ext_alt_text": null, "ext_media_availability": {"status": "available"}, "ext_media_color": {"palette": [{"rgb": {"red": 255, "green": 255, "blue": 255}, "percentage": 99.41}, {"rgb": {"red": 138, "green": 138, "blue": 138}, "percentage": 0.59}]}, "ext": {"mediaStats": {"r": "Missing", "ttl": -1}}}, {"id": 1448555817465225216, "id_str": "1448555817465225216", "indices": [116, 139], "media_url": "http://pbs.twimg.com/media/FBpN11lXIAARpzQ.jpg", "media_url_https": "https://pbs.twimg.com/media/FBpN11lXIAARpzQ.jpg", "url": "https://t.co/DFRbLGwZAc", "display_url": "pic.twitter.com/DFRbLGwZAc", "expanded_url": "https://twitter.com/residuum05/status/1448555822586515457/photo/1", "type": "photo", "original_info": {"width": 432, "height": 508, "focus_rects": [{"x": 0, "y": 69, "h": 242, "w": 432}, {"x": 0, "y": 0, "h": 432, "w": 432}, {"x": 0, "y": 0, "h": 492, "w": 432}, {"x": 139, "y": 0, "h": 508, "w": 254}, {"x": 0, "y": 0, "h": 508, "w": 432}]}, "sizes": {"small": {"w": 432, "h": 508, "resize": "fit"}, "medium": {"w": 432, "h": 508, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 432, "h": 508, "resize": "fit"}}, "media_key": "3_1448555817465225216", "ext_media_color": {"palette": [{"rgb": {"red": 255, "green": 255, "blue": 255}, "percentage": 42.14}, {"rgb": {"red": 155, "green": 101, "blue": 73}, "percentage": 26.06}, {"rgb": {"red": 53, "green": 51, "blue": 34}, "percentage": 17.51}, {"rgb": {"red": 226, "green": 181, "blue": 149}, "percentage": 7.27}, {"rgb": {"red": 104, "green": 60, "blue": 35}, "percentage": 3.42}]}, "ext_alt_text": null, "ext_media_availability": {"status": "available"}, "ext": {"mediaStats": {"r": "Missing", "ttl": -1}}}]}, "source": "<a href=\"http://twitter.com/#!/download/ipad\" rel=\"nofollow\">Twitter for iPad</a>", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user_id": 1112700018572644352, "user_id_str": "1112700018572644352", "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 19, "favorite_count": 25, "reply_count": 1, "quote_count": 4, "conversation_id": 1448555822586515457, "conversation_id_str": "1448555822586515457", "favorited": false, "retweeted": false, "possibly_sensitive": false, "possibly_sensitive_editable": true, "lang": "pl", "supplemental_language": null}}
{"object_type": "TweetRaw", "download_datetime": "2021-10-14T13:13:26.273340+02:00", "raw_value": {"created_at": "Thu Oct 14 04:47:35 +0000 2021", "id": 1448510775153381376, "id_str": "1448510775153381376", "full_text": "#NowaZelandia: Liczba zaka\u017ce\u0144 w #Auckland ro\u015bnie po 58 dniach #lockdown.u #SARS_CoV_2 #COVID19 #koronawirus \n\nhttps://t.co/f5OPQEb3AE", "truncated": false, "display_text_range": [0, 133], "entities": {"hashtags": [{"text": "NowaZelandia", "indices": [0, 13]}, {"text": "Auckland", "indices": [32, 41]}, {"text": "lockdown", "indices": [62, 71]}, {"text": "SARS_CoV_2", "indices": [74, 85]}, {"text": "COVID19", "indices": [86, 94]}, {"text": "koronawirus", "indices": [95, 107]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/f5OPQEb3AE", "expanded_url": "https://www.rp.pl/ochrona-zdrowia/art19013181-nowa-zelandia-liczba-zakazen-w-auckland-rosnie-po-58-dniach-lockdownu", "display_url": "rp.pl/ochrona-zdrowi\u2026", "indices": [110, 133]}]}, "source": "<a href=\"https://about.twitter.com/products/tweetdeck\" rel=\"nofollow\">TweetDeck</a>", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user_id": 194399035, "user_id_str": "194399035", "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 2, "reply_count": 0, "quote_count": 0, "conversation_id": 1448510775153381376, "conversation_id_str": "1448510775153381376", "favorited": false, "retweeted": false, "possibly_sensitive": false, "possibly_sensitive_editable": true, "card": {"name": "summary", "url": "https://t.co/f5OPQEb3AE", "card_type_url": "http://card-type-url-is-deprecated.invalid", "binding_values": {"vanity_url": {"type": "STRING", "string_value": "rp.pl", "scribe_key": "vanity_url"}, "domain": {"type": "STRING", "string_value": "www.rp.pl"}, "title": {"type": "STRING", "string_value": "Koronawirus. Nowa Zelandia: Liczba zaka\u017ce\u0144 w Auckland ro\u015bnie po 58 dniach lockdownu"}, "description": {"type": "STRING", "string_value": "Od pocz\u0105tku epidemii w zamieszkiwanej przez ok. 5 mln os\u00f3b Nowej Zelandii wykryto 4 472 zaka\u017cenia koronawirusem. Zmar\u0142o 28 chorych na COVID-19."}, "thumbnail_image_small": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448510780043939845/HCSibZIb?format=jpg&name=100x100_2", "width": 100, "height": 100, "alt": null}}, "thumbnail_image": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448510780043939845/HCSibZIb?format=jpg&name=144x144_2", "width": 144, "height": 144, "alt": null}}, "thumbnail_image_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448510780043939845/HCSibZIb?format=jpg&name=420x420_2", "width": 420, "height": 420, "alt": null}}, "thumbnail_image_x_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448510780043939845/HCSibZIb?format=png&name=2048x2048_2_exp", "width": 1200, "height": 716, "alt": null}}, "thumbnail_image_original": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448510780043939845/HCSibZIb?format=jpg&name=orig", "width": 1200, "height": 716, "alt": null}}, "card_url": {"type": "STRING", "string_value": "https://t.co/f5OPQEb3AE", "scribe_key": "card_url"}}, "card_platform": {"platform": {"device": {"name": "Swift", "version": "12"}, "audience": {"name": "production", "bucket": null}}}}, "lang": "pl", "supplemental_language": null}}
{"object_type": "TweetRaw", "download_datetime": "2021-10-14T13:13:26.273476+02:00", "raw_value": {"created_at": "Thu Oct 14 07:01:02 +0000 2021", "id": 1448544359918579713, "id_str": "1448544359918579713", "full_text": "Happy #AHPsDay and THANK YOU to all our wonderful allied health professionals across the country, who have played a significant role in the ongoing response to #COVID19\n\n#AHPsDayScot https://t.co/CcFXGRtjB0", "truncated": false, "display_text_range": [0, 182], "entities": {"hashtags": [{"text": "AHPsDay", "indices": [6, 14]}, {"text": "COVID19", "indices": [160, 168]}, {"text": "AHPsDayScot", "indices": [170, 182]}], "symbols": [], "user_mentions": [], "urls": [], "media": [{"id": 1448544356999307273, "id_str": "1448544356999307273", "indices": [183, 206], "media_url": "http://pbs.twimg.com/media/FBpDawBXIAk_nv2.jpg", "media_url_https": "https://pbs.twimg.com/media/FBpDawBXIAk_nv2.jpg", "url": "https://t.co/CcFXGRtjB0", "display_url": "pic.twitter.com/CcFXGRtjB0", "expanded_url": "https://twitter.com/BDA_Dietitians/status/1448544359918579713/photo/1", "type": "photo", "original_info": {"width": 627, "height": 495, "focus_rects": [{"x": 0, "y": 59, "h": 351, "w": 627}, {"x": 66, "y": 0, "h": 495, "w": 495}, {"x": 96, "y": 0, "h": 495, "w": 434}, {"x": 189, "y": 0, "h": 495, "w": 248}, {"x": 0, "y": 0, "h": 495, "w": 627}]}, "sizes": {"small": {"w": 627, "h": 495, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 627, "h": 495, "resize": "fit"}, "medium": {"w": 627, "h": 495, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 1448544356999307273, "id_str": "1448544356999307273", "indices": [183, 206], "media_url": "http://pbs.twimg.com/media/FBpDawBXIAk_nv2.jpg", "media_url_https": "https://pbs.twimg.com/media/FBpDawBXIAk_nv2.jpg", "url": "https://t.co/CcFXGRtjB0", "display_url": "pic.twitter.com/CcFXGRtjB0", "expanded_url": "https://twitter.com/BDA_Dietitians/status/1448544359918579713/photo/1", "type": "photo", "original_info": {"width": 627, "height": 495, "focus_rects": [{"x": 0, "y": 59, "h": 351, "w": 627}, {"x": 66, "y": 0, "h": 495, "w": 495}, {"x": 96, "y": 0, "h": 495, "w": 434}, {"x": 189, "y": 0, "h": 495, "w": 248}, {"x": 0, "y": 0, "h": 495, "w": 627}]}, "sizes": {"small": {"w": 627, "h": 495, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 627, "h": 495, "resize": "fit"}, "medium": {"w": 627, "h": 495, "resize": "fit"}}, "media_key": "3_1448544356999307273", "ext_alt_text": null, "ext_media_availability": {"status": "available"}, "ext_media_color": {"palette": [{"rgb": {"red": 255, "green": 255, "blue": 255}, "percentage": 74.56}, {"rgb": {"red": 1, "green": 122, "blue": 195}, "percentage": 9.3}, {"rgb": {"red": 212, "green": 160, "blue": 210}, "percentage": 6.29}, {"rgb": {"red": 192, "green": 5, "blue": 125}, "percentage": 3.64}, {"rgb": {"red": 247, "green": 254, "blue": 247}, "percentage": 2.07}]}, "ext": {"mediaStats": {"r": "Missing", "ttl": -1}}}]}, "source": "<a href=\"https://buffer.com\" rel=\"nofollow\">Buffer</a>", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user_id": 82649720, "user_id_str": "82649720", "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 30, "favorite_count": 62, "reply_count": 0, "quote_count": 4, "conversation_id": 1448544359918579713, "conversation_id_str": "1448544359918579713", "favorited": false, "retweeted": false, "possibly_sensitive": false, "possibly_sensitive_editable": true, "lang": "en", "supplemental_language": null}}
{"object_type": "TweetRaw", "download_datetime": "2021-10-14T13:13:26.273784+02:00", "raw_value": {"created_at": "Thu Oct 14 07:27:14 +0000 2021", "id": 1448550952714313732, "id_str": "1448550952714313732", "full_text": "We W\u0142oszech przepustka sanitarna wymagana w parlamencie, kary za jej brak\n#pandemia #koronawirus #szczepienia #COVID19 #W\u0142ochy #Rzym #parlament\nhttps://t.co/BMau40Kneq", "truncated": false, "display_text_range": [0, 167], "entities": {"hashtags": [{"text": "pandemia", "indices": [74, 83]}, {"text": "koronawirus", "indices": [84, 96]}, {"text": "szczepienia", "indices": [97, 109]}, {"text": "COVID19", "indices": [110, 118]}, {"text": "W\u0142ochy", "indices": [119, 126]}, {"text": "Rzym", "indices": [127, 132]}, {"text": "parlament", "indices": [133, 143]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/BMau40Kneq", "expanded_url": "https://300gospodarka.pl/news/we-wloszech-przepustka-sanitarna-wymagana-w-parlamencie-kary-za-jej-brak", "display_url": "300gospodarka.pl/news/we-wlosze\u2026", "indices": [144, 167]}]}, "source": "<a href=\"https://about.twitter.com/products/tweetdeck\" rel=\"nofollow\">TweetDeck</a>", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user_id": 1050083778528448512, "user_id_str": "1050083778528448512", "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "reply_count": 0, "quote_count": 0, "conversation_id": 1448550952714313732, "conversation_id_str": "1448550952714313732", "favorited": false, "retweeted": false, "possibly_sensitive": false, "possibly_sensitive_editable": true, "card": {"name": "summary_large_image", "url": "https://t.co/BMau40Kneq", "card_type_url": "http://card-type-url-is-deprecated.invalid", "binding_values": {"vanity_url": {"type": "STRING", "string_value": "300gospodarka.pl", "scribe_key": "vanity_url"}, "amp": {"type": "BOOLEAN", "boolean_value": true}, "domain": {"type": "STRING", "string_value": "300gospodarka.pl"}, "creator": {"type": "USER", "user_value": {"id_str": "1050083778528448512", "path": []}}, "site": {"type": "USER", "user_value": {"id_str": "1050083778528448512", "path": []}, "scribe_key": "publisher_id"}, "title": {"type": "STRING", "string_value": "We W\u0142oszech przepustka sanitarna wymagana w parlamencie, kary za jej brak | 300Gospodarka.pl"}, "description": {"type": "STRING", "string_value": "We W\u0142oszech deputowani i senatorowie, podobnie jak wszyscy pracownicy w ca\u0142ym kraju, musz\u0105 mie\u0107 od pi\u0105tku przepustki Covid-19, aby wej\u015b\u0107 do parlamentu. ... 300Gospodarka.pl ."}, "thumbnail_image_small": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448550956132708352/thiiuMul?format=jpg&name=100x100", "width": 100, "height": 64, "alt": null}}, "thumbnail_image": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448550956132708352/thiiuMul?format=jpg&name=280x150", "width": 236, "height": 150, "alt": null}}, "thumbnail_image_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448550956132708352/thiiuMul?format=jpg&name=800x320_1", "width": 504, "height": 320, "alt": null}}, "thumbnail_image_x_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448550956132708352/thiiuMul?format=png&name=2048x2048_2_exp", "width": 1000, "height": 635, "alt": null}}, "thumbnail_image_original": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448550956132708352/thiiuMul?format=jpg&name=orig", "width": 1000, "height": 635, "alt": null}}, "summary_photo_image_small": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448550956132708352/thiiuMul?format=jpg&name=386x202", "width": 386, "height": 202, "alt": null}}, "summary_photo_image": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448550956132708352/thiiuMul?format=jpg&name=600x314", "width": 600, "height": 314, "alt": null}}, "summary_photo_image_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448550956132708352/thiiuMul?format=jpg&name=800x419", "width": 800, "height": 419, "alt": null}}, "summary_photo_image_x_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448550956132708352/thiiuMul?format=png&name=2048x2048_2_exp", "width": 1000, "height": 635, "alt": null}}, "summary_photo_image_original": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448550956132708352/thiiuMul?format=jpg&name=orig", "width": 1000, "height": 635, "alt": null}}, "photo_image_full_size_small": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448550956132708352/thiiuMul?format=jpg&name=386x202", "width": 386, "height": 202, "alt": null}}, "photo_image_full_size": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448550956132708352/thiiuMul?format=jpg&name=600x314", "width": 600, "height": 314, "alt": null}}, "photo_image_full_size_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448550956132708352/thiiuMul?format=jpg&name=800x419", "width": 800, "height": 419, "alt": null}}, "photo_image_full_size_x_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448550956132708352/thiiuMul?format=png&name=2048x2048_2_exp", "width": 1000, "height": 635, "alt": null}}, "photo_image_full_size_original": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448550956132708352/thiiuMul?format=jpg&name=orig", "width": 1000, "height": 635, "alt": null}}, "card_url": {"type": "STRING", "string_value": "https://t.co/BMau40Kneq", "scribe_key": "card_url"}}, "users": {"1050083778528448512": {"id": 1050083778528448512, "id_str": "1050083778528448512", "name": "300Gospodarka", "screen_name": "300gospodarka", "location": "Polska", "description": "Czysta gospodarka. Zapisz si\u0119 na nasz newsletter #300SEKUND: https://t.co/3dl9P5r2N0", "url": "https://t.co/DhjM5M7fQ3", "entities": {"url": {"urls": [{"url": "https://t.co/DhjM5M7fQ3", "expanded_url": "http://300Gospodarka.pl", "display_url": "300Gospodarka.pl", "indices": [0, 23]}]}, "description": {"urls": [{"url": "https://t.co/3dl9P5r2N0", "expanded_url": "https://300gospodarka.pl/newsletter-300gospodarki", "display_url": "300gospodarka.pl/newsletter-300\u2026", "indices": [61, 84]}]}}, "protected": false, "followers_count": 4419, "fast_followers_count": 0, "normal_followers_count": 4419, "friends_count": 431, "listed_count": 42, "created_at": "Wed Oct 10 18:00:57 +0000 2018", "favourites_count": 643, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 5983, "media_count": 275, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "F5F8FA", "profile_background_image_url": null, "profile_background_image_url_https": null, "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1070656369236283392/1jb7MQ0R_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1070656369236283392/1jb7MQ0R_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1050083778528448512/1592901783", "profile_image_extensions_alt_text": null, "profile_image_extensions_media_availability": null, "profile_image_extensions_media_color": {"palette": [{"rgb": {"red": 7, "green": 150, "blue": 73}, "percentage": 90.55}, {"rgb": {"red": 250, "green": 253, "blue": 252}, "percentage": 7.69}, {"rgb": {"red": 162, "green": 216, "blue": 187}, "percentage": 1.62}, {"rgb": {"red": 4, "green": 151, "blue": 68}, "percentage": 0.13}]}, "profile_image_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_banner_extensions_alt_text": null, "profile_banner_extensions_media_availability": null, "profile_banner_extensions_media_color": {"palette": [{"rgb": {"red": 255, "green": 255, "blue": 255}, "percentage": 76.22}, {"rgb": {"red": 11, "green": 91, "blue": 49}, "percentage": 15.75}, {"rgb": {"red": 131, "green": 186, "blue": 157}, "percentage": 3.2}, {"rgb": {"red": 29, "green": 88, "blue": 55}, "percentage": 1.67}, {"rgb": {"red": 249, "green": 210, "blue": 211}, "percentage": 0.4}]}, "profile_banner_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": true, "default_profile_image": false, "pinned_tweet_ids": [1433798474932314116], "pinned_tweet_ids_str": ["1433798474932314116"], "has_custom_timelines": true, "can_dm": null, "following": null, "follow_request_sent": null, "notifications": null, "muting": null, "blocking": null, "blocked_by": null, "want_retweets": null, "advertiser_account_type": "promotable_user", "advertiser_account_service_levels": ["smb"], "profile_interstitial_type": "", "business_profile_state": "none", "translator_type": "none", "withheld_in_countries": [], "followed_by": null, "ext": {"highlightedLabel": {"r": {"ok": {}}, "ttl": -1}}, "require_some_consent": false}}, "card_platform": {"platform": {"device": {"name": "Swift", "version": "12"}, "audience": {"name": "production", "bucket": null}}}}, "lang": "pl", "supplemental_language": null}}
{"object_type": "TweetRaw", "download_datetime": "2021-10-14T13:13:26.273999+02:00", "raw_value": {"created_at": "Thu Oct 14 00:54:16 +0000 2021", "id": 1448452058831470604, "id_str": "1448452058831470604", "full_text": "Gov Abbott stands strong supporting reproductive rights!\n...of #COVID19 https://t.co/TZRTdZOI68", "truncated": false, "display_text_range": [0, 71], "entities": {"hashtags": [{"text": "COVID19", "indices": [63, 71]}], "symbols": [], "user_mentions": [], "urls": [], "media": [{"id": 1448452055845138439, "id_str": "1448452055845138439", "indices": [72, 95], "media_url": "http://pbs.twimg.com/media/FBnveHbVcAcNvpT.jpg", "media_url_https": "https://pbs.twimg.com/media/FBnveHbVcAcNvpT.jpg", "url": "https://t.co/TZRTdZOI68", "display_url": "pic.twitter.com/TZRTdZOI68", "expanded_url": "https://twitter.com/mcspocky/status/1448452058831470604/photo/1", "type": "photo", "original_info": {"width": 2048, "height": 2048, "focus_rects": [{"x": 0, "y": 0, "h": 1147, "w": 2048}, {"x": 0, "y": 0, "h": 2048, "w": 2048}, {"x": 0, "y": 0, "h": 2048, "w": 1796}, {"x": 0, "y": 0, "h": 2048, "w": 1024}, {"x": 0, "y": 0, "h": 2048, "w": 2048}]}, "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 2048, "h": 2048, "resize": "fit"}, "medium": {"w": 1200, "h": 1200, "resize": "fit"}, "small": {"w": 680, "h": 680, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 1448452055845138439, "id_str": "1448452055845138439", "indices": [72, 95], "media_url": "http://pbs.twimg.com/media/FBnveHbVcAcNvpT.jpg", "media_url_https": "https://pbs.twimg.com/media/FBnveHbVcAcNvpT.jpg", "url": "https://t.co/TZRTdZOI68", "display_url": "pic.twitter.com/TZRTdZOI68", "expanded_url": "https://twitter.com/mcspocky/status/1448452058831470604/photo/1", "type": "photo", "original_info": {"width": 2048, "height": 2048, "focus_rects": [{"x": 0, "y": 0, "h": 1147, "w": 2048}, {"x": 0, "y": 0, "h": 2048, "w": 2048}, {"x": 0, "y": 0, "h": 2048, "w": 1796}, {"x": 0, "y": 0, "h": 2048, "w": 1024}, {"x": 0, "y": 0, "h": 2048, "w": 2048}]}, "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 2048, "h": 2048, "resize": "fit"}, "medium": {"w": 1200, "h": 1200, "resize": "fit"}, "small": {"w": 680, "h": 680, "resize": "fit"}}, "media_key": "3_1448452055845138439", "ext_alt_text": null, "ext_media_availability": {"status": "available"}, "ext_media_color": {"palette": [{"rgb": {"red": 180, "green": 214, "blue": 249}, "percentage": 41.02}, {"rgb": {"red": 127, "green": 102, "blue": 90}, "percentage": 19.13}, {"rgb": {"red": 34, "green": 62, "blue": 79}, "percentage": 10.56}, {"rgb": {"red": 50, "green": 139, "blue": 170}, "percentage": 8.42}, {"rgb": {"red": 140, "green": 33, "blue": 69}, "percentage": 4.01}]}, "ext": {"mediaStats": {"r": "Missing", "ttl": -1}}}]}, "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user_id": 18082945, "user_id_str": "18082945", "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 169, "favorite_count": 374, "reply_count": 8, "quote_count": 3, "conversation_id": 1448452058831470604, "conversation_id_str": "1448452058831470604", "favorited": false, "retweeted": false, "possibly_sensitive": false, "possibly_sensitive_editable": true, "lang": "en", "supplemental_language": null}}
{"object_type": "TweetRaw", "download_datetime": "2021-10-14T13:13:26.274232+02:00", "raw_value": {"created_at": "Thu Oct 14 08:52:57 +0000 2021", "id": 1448572521964580865, "id_str": "1448572521964580865", "full_text": "W wojew\u00f3dztwie \u015bwi\u0119tokrzyskim od pocz\u0105tku epidemii potwierdzono zachorowania u 73 841 os\u00f3b. Zmar\u0142o 2 528 chorych.\n#koronawirus #sarscov2 #covid19 #\u015bwi\u0119tokrzyskie #s\u0142uchasziwiesz #radiokielce\nhttps://t.co/DyIs8yGkAb", "truncated": false, "display_text_range": [0, 214], "entities": {"hashtags": [{"text": "koronawirus", "indices": [114, 126]}, {"text": "sarscov2", "indices": [127, 136]}, {"text": "covid19", "indices": [137, 145]}, {"text": "\u015bwi\u0119tokrzyskie", "indices": [146, 161]}, {"text": "s\u0142uchasziwiesz", "indices": [162, 177]}, {"text": "radiokielce", "indices": [178, 190]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/DyIs8yGkAb", "expanded_url": "https://www.radio.kielce.pl/wiadomosci/wciaz-duzo-zakazen-najwiecej-przypadkow-w-powiecie-kieleckim,137672", "display_url": "radio.kielce.pl/wiadomosci/wci\u2026", "indices": [191, 214]}]}, "source": "<a href=\"https://mobile.twitter.com\" rel=\"nofollow\">Twitter Web App</a>", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user_id": 2753180147, "user_id_str": "2753180147", "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "reply_count": 0, "quote_count": 0, "conversation_id": 1448572521964580865, "conversation_id_str": "1448572521964580865", "favorited": false, "retweeted": false, "possibly_sensitive": false, "possibly_sensitive_editable": true, "card": {"name": "summary_large_image", "url": "https://t.co/DyIs8yGkAb", "card_type_url": "http://card-type-url-is-deprecated.invalid", "binding_values": {"vanity_url": {"type": "STRING", "string_value": "radio.kielce.pl", "scribe_key": "vanity_url"}, "domain": {"type": "STRING", "string_value": "www.radio.kielce.pl"}, "site": {"type": "USER", "user_value": {"id_str": "2753180147", "path": []}, "scribe_key": "publisher_id"}, "title": {"type": "STRING", "string_value": "Wci\u0105\u017c du\u017co zaka\u017ce\u0144, najwi\u0119cej przypadk\u00f3w w powiecie kieleckim [WYKRES]"}, "description": {"type": "STRING", "string_value": "39 nowych zaka\u017ce\u0144 koronawirusem potwierdzono minionej doby w wojew\u00f3dztwie \u015bwi\u0119tokrzyskim. Wykonano 1241 test\u00f3w, a na kwarantannie przebywa 1449 os\u00f3b."}, "thumbnail_image_small": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448572524346888200/4UWbO_qj?format=jpg&name=100x100", "width": 100, "height": 66, "alt": null}}, "thumbnail_image": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448572524346888200/4UWbO_qj?format=jpg&name=280x150", "width": 226, "height": 150, "alt": null}}, "thumbnail_image_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448572524346888200/4UWbO_qj?format=jpg&name=800x320_1", "width": 482, "height": 320, "alt": null}}, "thumbnail_image_x_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448572524346888200/4UWbO_qj?format=png&name=2048x2048_2_exp", "width": 648, "height": 430, "alt": null}}, "thumbnail_image_original": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448572524346888200/4UWbO_qj?format=jpg&name=orig", "width": 648, "height": 430, "alt": null}}, "summary_photo_image_small": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448572524346888200/4UWbO_qj?format=jpg&name=386x202", "width": 386, "height": 202, "alt": null}}, "summary_photo_image": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448572524346888200/4UWbO_qj?format=jpg&name=600x314", "width": 600, "height": 314, "alt": null}}, "summary_photo_image_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448572524346888200/4UWbO_qj?format=jpg&name=800x419", "width": 648, "height": 339, "alt": null}}, "summary_photo_image_x_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448572524346888200/4UWbO_qj?format=png&name=2048x2048_2_exp", "width": 648, "height": 430, "alt": null}}, "summary_photo_image_original": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448572524346888200/4UWbO_qj?format=jpg&name=orig", "width": 648, "height": 430, "alt": null}}, "photo_image_full_size_small": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448572524346888200/4UWbO_qj?format=jpg&name=386x202", "width": 386, "height": 202, "alt": null}}, "photo_image_full_size": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448572524346888200/4UWbO_qj?format=jpg&name=600x314", "width": 600, "height": 314, "alt": null}}, "photo_image_full_size_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448572524346888200/4UWbO_qj?format=jpg&name=800x419", "width": 648, "height": 339, "alt": null}}, "photo_image_full_size_x_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448572524346888200/4UWbO_qj?format=png&name=2048x2048_2_exp", "width": 648, "height": 430, "alt": null}}, "photo_image_full_size_original": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448572524346888200/4UWbO_qj?format=jpg&name=orig", "width": 648, "height": 430, "alt": null}}, "card_url": {"type": "STRING", "string_value": "https://t.co/DyIs8yGkAb", "scribe_key": "card_url"}}, "users": {"2753180147": {"id": 2753180147, "id_str": "2753180147", "name": "Radio Kielce", "screen_name": "RadioKielce", "location": "Kielce", "description": "Radio Kielce", "url": "https://t.co/M3MuQE01rZ", "entities": {"url": {"urls": [{"url": "https://t.co/M3MuQE01rZ", "expanded_url": "https://www.radio.kielce.pl/", "display_url": "radio.kielce.pl", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 1568, "fast_followers_count": 0, "normal_followers_count": 1568, "friends_count": 102, "listed_count": 6, "created_at": "Thu Aug 28 09:17:08 +0000 2014", "favourites_count": 31, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 13031, "media_count": 823, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/849256109739323392/IvyfoivX_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/849256109739323392/IvyfoivX_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/2753180147/1633601689", "profile_image_extensions_media_color": {"palette": [{"rgb": {"red": 255, "green": 255, "blue": 255}, "percentage": 65.6}, {"rgb": {"red": 0, "green": 0, "blue": 0}, "percentage": 20.77}, {"rgb": {"red": 254, "green": 0, "blue": 0}, "percentage": 12.37}, {"rgb": {"red": 251, "green": 164, "blue": 164}, "percentage": 0.48}, {"rgb": {"red": 248, "green": 111, "blue": 110}, "percentage": 0.37}]}, "profile_image_extensions_alt_text": null, "profile_image_extensions_media_availability": null, "profile_image_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_banner_extensions_alt_text": null, "profile_banner_extensions_media_availability": null, "profile_banner_extensions_media_color": {"palette": [{"rgb": {"red": 12, "green": 12, "blue": 11}, "percentage": 78.05}, {"rgb": {"red": 104, "green": 70, "blue": 35}, "percentage": 13.92}, {"rgb": {"red": 135, "green": 73, "blue": 39}, "percentage": 2.4}, {"rgb": {"red": 173, "green": 142, "blue": 50}, "percentage": 2.09}, {"rgb": {"red": 180, "green": 148, "blue": 86}, "percentage": 0.98}]}, "profile_banner_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_link_color": "1B95E0", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "has_extended_profile": false, "default_profile": false, "default_profile_image": false, "pinned_tweet_ids": [], "pinned_tweet_ids_str": [], "has_custom_timelines": true, "can_dm": null, "following": null, "follow_request_sent": null, "notifications": null, "muting": null, "blocking": null, "blocked_by": null, "want_retweets": null, "advertiser_account_type": "promotable_user", "advertiser_account_service_levels": ["analytics"], "profile_interstitial_type": "", "business_profile_state": "none", "translator_type": "none", "withheld_in_countries": [], "followed_by": null, "ext": {"highlightedLabel": {"r": {"ok": {}}, "ttl": -1}}, "require_some_consent": false}}, "card_platform": {"platform": {"device": {"name": "Swift", "version": "12"}, "audience": {"name": "production", "bucket": null}}}}, "lang": "pl", "supplemental_language": null}}
{"object_type": "TweetRaw", "download_datetime": "2021-10-14T13:13:26.274382+02:00", "raw_value": {"created_at": "Thu Oct 14 09:33:11 +0000 2021", "id": 1448582650856357889, "id_str": "1448582650856357889", "full_text": "Aktualizacja Zalece\u0144 w #COVID19 \u2013 Farmakoterapia w COVID-19 https://t.co/GQtSEfULJ5 @aotmit #bazaCOVID #wytyczneCOVID #Covid19Pandemic #COVIDGuidelines #Covidinfo #covidadvice #pharmacotherapyCOVID https://t.co/22wEH0IKbT", "truncated": false, "display_text_range": [0, 197], "entities": {"hashtags": [{"text": "COVID19", "indices": [23, 31]}, {"text": "bazaCOVID", "indices": [92, 102]}, {"text": "wytyczneCOVID", "indices": [103, 117]}, {"text": "Covid19Pandemic", "indices": [118, 134]}, {"text": "COVIDGuidelines", "indices": [135, 151]}, {"text": "Covidinfo", "indices": [152, 162]}, {"text": "covidadvice", "indices": [163, 175]}, {"text": "pharmacotherapyCOVID", "indices": [176, 197]}], "symbols": [], "user_mentions": [{"screen_name": "aotmit", "name": "Agencja Oceny Technologii Medycznych i Taryfikacji", "id": 4845233595, "id_str": "4845233595", "indices": [84, 91]}], "urls": [{"url": "https://t.co/GQtSEfULJ5", "expanded_url": "https://www.aotm.gov.pl/aktualnosci/najnowsze/aktualizacja-zalecen-farmakoterapia-w-covid-19-3/", "display_url": "aotm.gov.pl/aktualnosci/na\u2026", "indices": [60, 83]}], "media": [{"id": 1448582531784314883, "id_str": "1448582531784314883", "indices": [198, 221], "media_url": "http://pbs.twimg.com/media/FBpmI0LXEAMfG5y.jpg", "media_url_https": "https://pbs.twimg.com/media/FBpmI0LXEAMfG5y.jpg", "url": "https://t.co/22wEH0IKbT", "display_url": "pic.twitter.com/22wEH0IKbT", "expanded_url": "https://twitter.com/aotmit/status/1448582650856357889/photo/1", "type": "photo", "original_info": {"width": 2381, "height": 1172, "focus_rects": [{"x": 288, "y": 0, "h": 1172, "w": 2093}, {"x": 778, "y": 0, "h": 1172, "w": 1172}, {"x": 850, "y": 0, "h": 1172, "w": 1028}, {"x": 1071, "y": 0, "h": 1172, "w": 586}, {"x": 0, "y": 0, "h": 1172, "w": 2381}]}, "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 2048, "h": 1008, "resize": "fit"}, "small": {"w": 680, "h": 335, "resize": "fit"}, "medium": {"w": 1200, "h": 591, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 1448582531784314883, "id_str": "1448582531784314883", "indices": [198, 221], "media_url": "http://pbs.twimg.com/media/FBpmI0LXEAMfG5y.jpg", "media_url_https": "https://pbs.twimg.com/media/FBpmI0LXEAMfG5y.jpg", "url": "https://t.co/22wEH0IKbT", "display_url": "pic.twitter.com/22wEH0IKbT", "expanded_url": "https://twitter.com/aotmit/status/1448582650856357889/photo/1", "type": "photo", "original_info": {"width": 2381, "height": 1172, "focus_rects": [{"x": 288, "y": 0, "h": 1172, "w": 2093}, {"x": 778, "y": 0, "h": 1172, "w": 1172}, {"x": 850, "y": 0, "h": 1172, "w": 1028}, {"x": 1071, "y": 0, "h": 1172, "w": 586}, {"x": 0, "y": 0, "h": 1172, "w": 2381}]}, "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 2048, "h": 1008, "resize": "fit"}, "small": {"w": 680, "h": 335, "resize": "fit"}, "medium": {"w": 1200, "h": 591, "resize": "fit"}}, "media_key": "3_1448582531784314883", "ext_alt_text": null, "ext_media_availability": {"status": "available"}, "ext_media_color": {"palette": [{"rgb": {"red": 37, "green": 148, "blue": 182}, "percentage": 65.53}, {"rgb": {"red": 14, "green": 88, "blue": 133}, "percentage": 13.91}, {"rgb": {"red": 205, "green": 224, "blue": 235}, "percentage": 9.21}, {"rgb": {"red": 17, "green": 110, "blue": 147}, "percentage": 4.39}, {"rgb": {"red": 24, "green": 157, "blue": 231}, "percentage": 2.32}]}, "ext": {"mediaStats": {"r": "Missing", "ttl": -1}}}]}, "source": "<a href=\"https://mobile.twitter.com\" rel=\"nofollow\">Twitter Web App</a>", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user_id": 4845233595, "user_id_str": "4845233595", "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "reply_count": 0, "quote_count": 0, "conversation_id": 1448582650856357889, "conversation_id_str": "1448582650856357889", "favorited": false, "retweeted": false, "possibly_sensitive": false, "possibly_sensitive_editable": true, "lang": "pl", "supplemental_language": null}}
{"object_type": "TweetRaw", "download_datetime": "2021-10-14T13:13:26.274522+02:00", "raw_value": {"created_at": "Thu Oct 14 10:35:24 +0000 2021", "id": 1448598306137858054, "id_str": "1448598306137858054", "full_text": "Over 5000 civilians of #ThayetChaung township are facing the shortages of food &amp; medical supplies in #TaungPyaunt Clash of DaungMin defenders &amp; SAC thugs that have been nearly 3 weeks long. Refugees are suffering from seasonal fever &amp; #COVID19 there.\n#WhatsHappeningInMyanmar https://t.co/tymio4HgFa", "truncated": false, "display_text_range": [0, 287], "entities": {"hashtags": [{"text": "ThayetChaung", "indices": [23, 36]}, {"text": "TaungPyaunt", "indices": [105, 117]}, {"text": "COVID19", "indices": [247, 255]}, {"text": "WhatsHappeningInMyanmar", "indices": [263, 287]}], "symbols": [], "user_mentions": [], "urls": [], "media": [{"id": 1448598302472081417, "id_str": "1448598302472081417", "indices": [288, 311], "media_url": "http://pbs.twimg.com/media/FBp0eykVEAk1yIt.jpg", "media_url_https": "https://pbs.twimg.com/media/FBp0eykVEAk1yIt.jpg", "url": "https://t.co/tymio4HgFa", "display_url": "pic.twitter.com/tymio4HgFa", "expanded_url": "https://twitter.com/pyae_zinburma/status/1448598306137858054/photo/1", "type": "photo", "original_info": {"width": 720, "height": 306, "focus_rects": [{"x": 87, "y": 0, "h": 306, "w": 546}, {"x": 207, "y": 0, "h": 306, "w": 306}, {"x": 226, "y": 0, "h": 306, "w": 268}, {"x": 284, "y": 0, "h": 306, "w": 153}, {"x": 0, "y": 0, "h": 306, "w": 720}]}, "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 720, "h": 306, "resize": "fit"}, "large": {"w": 720, "h": 306, "resize": "fit"}, "small": {"w": 680, "h": 289, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 1448598302472081417, "id_str": "1448598302472081417", "indices": [288, 311], "media_url": "http://pbs.twimg.com/media/FBp0eykVEAk1yIt.jpg", "media_url_https": "https://pbs.twimg.com/media/FBp0eykVEAk1yIt.jpg", "url": "https://t.co/tymio4HgFa", "display_url": "pic.twitter.com/tymio4HgFa", "expanded_url": "https://twitter.com/pyae_zinburma/status/1448598306137858054/photo/1", "type": "photo", "original_info": {"width": 720, "height": 306, "focus_rects": [{"x": 87, "y": 0, "h": 306, "w": 546}, {"x": 207, "y": 0, "h": 306, "w": 306}, {"x": 226, "y": 0, "h": 306, "w": 268}, {"x": 284, "y": 0, "h": 306, "w": 153}, {"x": 0, "y": 0, "h": 306, "w": 720}]}, "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 720, "h": 306, "resize": "fit"}, "large": {"w": 720, "h": 306, "resize": "fit"}, "small": {"w": 680, "h": 289, "resize": "fit"}}, "media_key": "3_1448598302472081417", "ext_alt_text": null, "ext_media_availability": {"status": "available"}, "ext_media_color": {"palette": [{"rgb": {"red": 0, "green": 0, "blue": 0}, "percentage": 93.37}, {"rgb": {"red": 187, "green": 58, "blue": 47}, "percentage": 3.96}, {"rgb": {"red": 85, "green": 28, "blue": 29}, "percentage": 2.45}, {"rgb": {"red": 228, "green": 64, "blue": 55}, "percentage": 0.38}]}, "ext": {"mediaStats": {"r": "Missing", "ttl": -1}}}]}, "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user_id": 1430030382519386112, "user_id_str": "1430030382519386112", "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 5, "favorite_count": 7, "reply_count": 0, "quote_count": 2, "conversation_id": 1448598306137858054, "conversation_id_str": "1448598306137858054", "favorited": false, "retweeted": false, "possibly_sensitive": false, "possibly_sensitive_editable": true, "lang": "en", "supplemental_language": null}}
{"object_type": "TweetRaw", "download_datetime": "2021-10-14T13:13:26.274649+02:00", "raw_value": {"created_at": "Thu Oct 14 06:57:32 +0000 2021", "id": 1448543477352972291, "id_str": "1448543477352972291", "full_text": "Once government gets away with abusing your rights in an emergency, they'll write laws to ensure they can do it all the time.\n\n#DigitalIdentity-legislation #auspol #covid19", "truncated": false, "display_text_range": [0, 172], "entities": {"hashtags": [{"text": "DigitalIdentity", "indices": [127, 143]}, {"text": "auspol", "indices": [156, 163]}, {"text": "covid19", "indices": [164, 172]}], "symbols": [], "user_mentions": [], "urls": []}, "source": "<a href=\"https://mobile.twitter.com\" rel=\"nofollow\">Twitter Web App</a>", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user_id": 39002335, "user_id_str": "39002335", "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 128, "favorite_count": 538, "reply_count": 28, "quote_count": 6, "conversation_id": 1448543477352972291, "conversation_id_str": "1448543477352972291", "favorited": false, "retweeted": false, "lang": "en", "supplemental_language": null}}
{"object_type": "TweetRaw", "download_datetime": "2021-10-14T13:13:26.275015+02:00", "raw_value": {"created_at": "Thu Oct 14 10:56:21 +0000 2021", "id": 1448603578650796034, "id_str": "1448603578650796034", "full_text": "W\u0119gry w tym roku dostan\u0105 technologi\u0119 produkcji Sputnika\n #W\u0119gry #Rosja #SputnikV #pandemia #koronawirus #COVID19 #szczepienia\nhttps://t.co/0AelFcd6c7", "truncated": false, "display_text_range": [0, 149], "entities": {"hashtags": [{"text": "W\u0119gry", "indices": [57, 63]}, {"text": "Rosja", "indices": [64, 70]}, {"text": "SputnikV", "indices": [71, 80]}, {"text": "pandemia", "indices": [81, 90]}, {"text": "koronawirus", "indices": [91, 103]}, {"text": "COVID19", "indices": [104, 112]}, {"text": "szczepienia", "indices": [113, 125]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/0AelFcd6c7", "expanded_url": "https://300gospodarka.pl/news/wegry-w-tym-roku-dostana-technologie-produkcji-sputnika", "display_url": "300gospodarka.pl/news/wegry-w-t\u2026", "indices": [126, 149]}]}, "source": "<a href=\"https://about.twitter.com/products/tweetdeck\" rel=\"nofollow\">TweetDeck</a>", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user_id": 1050083778528448512, "user_id_str": "1050083778528448512", "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "reply_count": 0, "quote_count": 0, "conversation_id": 1448603578650796034, "conversation_id_str": "1448603578650796034", "favorited": false, "retweeted": false, "possibly_sensitive": false, "possibly_sensitive_editable": true, "card": {"name": "summary_large_image", "url": "https://t.co/0AelFcd6c7", "card_type_url": "http://card-type-url-is-deprecated.invalid", "binding_values": {"vanity_url": {"type": "STRING", "string_value": "300gospodarka.pl", "scribe_key": "vanity_url"}, "amp": {"type": "BOOLEAN", "boolean_value": true}, "domain": {"type": "STRING", "string_value": "300gospodarka.pl"}, "creator": {"type": "USER", "user_value": {"id_str": "1050083778528448512", "path": []}}, "site": {"type": "USER", "user_value": {"id_str": "1050083778528448512", "path": []}, "scribe_key": "publisher_id"}, "title": {"type": "STRING", "string_value": "W\u0119gry w tym roku dostan\u0105 technologi\u0119 produkcji Sputnika | 300Gospodarka.pl"}, "description": {"type": "STRING", "string_value": "W\u0119gry jeszcze w tym roku otrzymaj\u0105 technologi\u0119 potrzebn\u0105 do produkcji rosyjskiej szczepionki przeciwko koronawirusowi Sputnik \u2013 o\u015bwiadczy\u0142 w czwartek w ... 300Gospodarka.pl ."}, "thumbnail_image_small": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448603581867864068/616D7mqO?format=jpg&name=100x100", "width": 100, "height": 67, "alt": null}}, "thumbnail_image": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448603581867864068/616D7mqO?format=jpg&name=280x150", "width": 225, "height": 150, "alt": null}}, "thumbnail_image_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448603581867864068/616D7mqO?format=jpg&name=800x320_1", "width": 480, "height": 320, "alt": null}}, "thumbnail_image_x_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448603581867864068/616D7mqO?format=png&name=2048x2048_2_exp", "width": 1000, "height": 667, "alt": null}}, "thumbnail_image_original": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448603581867864068/616D7mqO?format=jpg&name=orig", "width": 1000, "height": 667, "alt": null}}, "summary_photo_image_small": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448603581867864068/616D7mqO?format=jpg&name=386x202", "width": 386, "height": 202, "alt": null}}, "summary_photo_image": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448603581867864068/616D7mqO?format=jpg&name=600x314", "width": 600, "height": 314, "alt": null}}, "summary_photo_image_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448603581867864068/616D7mqO?format=jpg&name=800x419", "width": 800, "height": 419, "alt": null}}, "summary_photo_image_x_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448603581867864068/616D7mqO?format=png&name=2048x2048_2_exp", "width": 1000, "height": 667, "alt": null}}, "summary_photo_image_original": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448603581867864068/616D7mqO?format=jpg&name=orig", "width": 1000, "height": 667, "alt": null}}, "photo_image_full_size_small": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448603581867864068/616D7mqO?format=jpg&name=386x202", "width": 386, "height": 202, "alt": null}}, "photo_image_full_size": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448603581867864068/616D7mqO?format=jpg&name=600x314", "width": 600, "height": 314, "alt": null}}, "photo_image_full_size_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448603581867864068/616D7mqO?format=jpg&name=800x419", "width": 800, "height": 419, "alt": null}}, "photo_image_full_size_x_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448603581867864068/616D7mqO?format=png&name=2048x2048_2_exp", "width": 1000, "height": 667, "alt": null}}, "photo_image_full_size_original": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448603581867864068/616D7mqO?format=jpg&name=orig", "width": 1000, "height": 667, "alt": null}}, "card_url": {"type": "STRING", "string_value": "https://t.co/0AelFcd6c7", "scribe_key": "card_url"}}, "users": {"1050083778528448512": {"id": 1050083778528448512, "id_str": "1050083778528448512", "name": "300Gospodarka", "screen_name": "300gospodarka", "location": "Polska", "description": "Czysta gospodarka. Zapisz si\u0119 na nasz newsletter #300SEKUND: https://t.co/3dl9P5r2N0", "url": "https://t.co/DhjM5M7fQ3", "entities": {"url": {"urls": [{"url": "https://t.co/DhjM5M7fQ3", "expanded_url": "http://300Gospodarka.pl", "display_url": "300Gospodarka.pl", "indices": [0, 23]}]}, "description": {"urls": [{"url": "https://t.co/3dl9P5r2N0", "expanded_url": "https://300gospodarka.pl/newsletter-300gospodarki", "display_url": "300gospodarka.pl/newsletter-300\u2026", "indices": [61, 84]}]}}, "protected": false, "followers_count": 4419, "fast_followers_count": 0, "normal_followers_count": 4419, "friends_count": 431, "listed_count": 42, "created_at": "Wed Oct 10 18:00:57 +0000 2018", "favourites_count": 643, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 5983, "media_count": 275, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "F5F8FA", "profile_background_image_url": null, "profile_background_image_url_https": null, "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1070656369236283392/1jb7MQ0R_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1070656369236283392/1jb7MQ0R_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1050083778528448512/1592901783", "profile_image_extensions_alt_text": null, "profile_image_extensions_media_availability": null, "profile_image_extensions_media_color": {"palette": [{"rgb": {"red": 7, "green": 150, "blue": 73}, "percentage": 90.55}, {"rgb": {"red": 250, "green": 253, "blue": 252}, "percentage": 7.69}, {"rgb": {"red": 162, "green": 216, "blue": 187}, "percentage": 1.62}, {"rgb": {"red": 4, "green": 151, "blue": 68}, "percentage": 0.13}]}, "profile_image_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_banner_extensions_alt_text": null, "profile_banner_extensions_media_availability": null, "profile_banner_extensions_media_color": {"palette": [{"rgb": {"red": 255, "green": 255, "blue": 255}, "percentage": 76.22}, {"rgb": {"red": 11, "green": 91, "blue": 49}, "percentage": 15.75}, {"rgb": {"red": 131, "green": 186, "blue": 157}, "percentage": 3.2}, {"rgb": {"red": 29, "green": 88, "blue": 55}, "percentage": 1.67}, {"rgb": {"red": 249, "green": 210, "blue": 211}, "percentage": 0.4}]}, "profile_banner_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": true, "default_profile_image": false, "pinned_tweet_ids": [1433798474932314116], "pinned_tweet_ids_str": ["1433798474932314116"], "has_custom_timelines": true, "can_dm": null, "following": null, "follow_request_sent": null, "notifications": null, "muting": null, "blocking": null, "blocked_by": null, "want_retweets": null, "advertiser_account_type": "promotable_user", "advertiser_account_service_levels": ["smb"], "profile_interstitial_type": "", "business_profile_state": "none", "translator_type": "none", "withheld_in_countries": [], "followed_by": null, "ext": {"highlightedLabel": {"r": {"ok": {}}, "ttl": -1}}, "require_some_consent": false}}, "card_platform": {"platform": {"device": {"name": "Swift", "version": "12"}, "audience": {"name": "production", "bucket": null}}}}, "lang": "pl", "supplemental_language": null}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:26.289596+02:00", "raw_value": {"id": 984032682735620096, "id_str": "984032682735620096", "name": "iPolska24.pl", "screen_name": "ipolska24", "location": "Polska", "description": "Portal informacyjny z niepublikowanymi wcze\u015bniej informacjami z kraju i ze \u015bwiata", "url": "https://t.co/00fI3AvpuG", "entities": {"url": {"urls": [{"url": "https://t.co/00fI3AvpuG", "expanded_url": "http://www.ipolska24.pl", "display_url": "ipolska24.pl", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 98, "fast_followers_count": 0, "normal_followers_count": 98, "friends_count": 107, "listed_count": 2, "created_at": "Wed Apr 11 11:37:28 +0000 2018", "favourites_count": 8, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 7138, "media_count": 437, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/984033446694617089/smSqDOAF_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/984033446694617089/smSqDOAF_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/984032682735620096/1550731401", "profile_image_extensions_alt_text": null, "profile_image_extensions_media_availability": null, "profile_image_extensions_media_color": {"palette": [{"rgb": {"red": 255, "green": 255, "blue": 255}, "percentage": 92.1}, {"rgb": {"red": 56, "green": 116, "blue": 184}, "percentage": 4.57}, {"rgb": {"red": 10, "green": 10, "blue": 10}, "percentage": 2.66}, {"rgb": {"red": 121, "green": 121, "blue": 121}, "percentage": 0.95}]}, "profile_image_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_banner_extensions_media_color": {"palette": [{"rgb": {"red": 43, "green": 91, "blue": 112}, "percentage": 30.89}, {"rgb": {"red": 253, "green": 221, "blue": 145}, "percentage": 23.6}, {"rgb": {"red": 255, "green": 161, "blue": 93}, "percentage": 15.44}, {"rgb": {"red": 212, "green": 134, "blue": 110}, "percentage": 7.83}, {"rgb": {"red": 253, "green": 240, "blue": 195}, "percentage": 5.43}]}, "profile_banner_extensions_alt_text": null, "profile_banner_extensions_media_availability": null, "profile_banner_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_link_color": "1B95E0", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "pinned_tweet_ids": [], "pinned_tweet_ids_str": [], "has_custom_timelines": false, "can_dm": null, "following": null, "follow_request_sent": null, "notifications": null, "muting": null, "blocking": null, "blocked_by": null, "want_retweets": null, "advertiser_account_type": "none", "advertiser_account_service_levels": [], "profile_interstitial_type": "", "business_profile_state": "none", "translator_type": "none", "withheld_in_countries": [], "followed_by": null, "ext": {"highlightedLabel": {"r": {"ok": {}}, "ttl": -1}}, "require_some_consent": false}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:26.290016+02:00", "raw_value": {"id": 1050083778528448512, "id_str": "1050083778528448512", "name": "300Gospodarka", "screen_name": "300gospodarka", "location": "Polska", "description": "Czysta gospodarka. Zapisz si\u0119 na nasz newsletter #300SEKUND: https://t.co/3dl9P5r2N0", "url": "https://t.co/DhjM5M7fQ3", "entities": {"url": {"urls": [{"url": "https://t.co/DhjM5M7fQ3", "expanded_url": "http://300Gospodarka.pl", "display_url": "300Gospodarka.pl", "indices": [0, 23]}]}, "description": {"urls": [{"url": "https://t.co/3dl9P5r2N0", "expanded_url": "https://300gospodarka.pl/newsletter-300gospodarki", "display_url": "300gospodarka.pl/newsletter-300\u2026", "indices": [61, 84]}]}}, "protected": false, "followers_count": 4419, "fast_followers_count": 0, "normal_followers_count": 4419, "friends_count": 431, "listed_count": 42, "created_at": "Wed Oct 10 18:00:57 +0000 2018", "favourites_count": 643, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 5983, "media_count": 275, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "F5F8FA", "profile_background_image_url": null, "profile_background_image_url_https": null, "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1070656369236283392/1jb7MQ0R_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1070656369236283392/1jb7MQ0R_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1050083778528448512/1592901783", "profile_image_extensions_alt_text": null, "profile_image_extensions_media_availability": null, "profile_image_extensions_media_color": {"palette": [{"rgb": {"red": 7, "green": 150, "blue": 73}, "percentage": 90.55}, {"rgb": {"red": 250, "green": 253, "blue": 252}, "percentage": 7.69}, {"rgb": {"red": 162, "green": 216, "blue": 187}, "percentage": 1.62}, {"rgb": {"red": 4, "green": 151, "blue": 68}, "percentage": 0.13}]}, "profile_image_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_banner_extensions_alt_text": null, "profile_banner_extensions_media_availability": null, "profile_banner_extensions_media_color": {"palette": [{"rgb": {"red": 255, "green": 255, "blue": 255}, "percentage": 76.22}, {"rgb": {"red": 11, "green": 91, "blue": 49}, "percentage": 15.75}, {"rgb": {"red": 131, "green": 186, "blue": 157}, "percentage": 3.2}, {"rgb": {"red": 29, "green": 88, "blue": 55}, "percentage": 1.67}, {"rgb": {"red": 249, "green": 210, "blue": 211}, "percentage": 0.4}]}, "profile_banner_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": true, "default_profile_image": false, "pinned_tweet_ids": [1433798474932314116], "pinned_tweet_ids_str": ["1433798474932314116"], "has_custom_timelines": true, "can_dm": null, "following": null, "follow_request_sent": null, "notifications": null, "muting": null, "blocking": null, "blocked_by": null, "want_retweets": null, "advertiser_account_type": "promotable_user", "advertiser_account_service_levels": ["smb"], "profile_interstitial_type": "", "business_profile_state": "none", "translator_type": "none", "withheld_in_countries": [], "followed_by": null, "ext": {"highlightedLabel": {"r": {"ok": {}}, "ttl": -1}}, "require_some_consent": false}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:26.290361+02:00", "raw_value": {"id": 39002335, "id_str": "39002335", "name": "Alexandra Marshall", "screen_name": "ellymelly", "location": "The land of Oz", "description": "Hey! :) I'm a writer/artist.\nLike what you read? Consider supporting me on \u2764 https://t.co/neISGhnB12 \u2764\n#GoFundYourselves mugs : https://t.co/kfo6QeLY4s", "url": "https://t.co/eT4X5uqzFU", "entities": {"url": {"urls": [{"url": "https://t.co/eT4X5uqzFU", "expanded_url": "https://ellymelly.home.blog", "display_url": "ellymelly.home.blog", "indices": [0, 23]}]}, "description": {"urls": [{"url": "https://t.co/neISGhnB12", "expanded_url": "http://ko-fi.com/M4M6BLEY", "display_url": "ko-fi.com/M4M6BLEY", "indices": [77, 100]}, {"url": "https://t.co/kfo6QeLY4s", "expanded_url": "http://teespring.com/stores/ellymelly", "display_url": "teespring.com/stores/ellymel\u2026", "indices": [128, 151]}]}}, "protected": false, "followers_count": 29234, "fast_followers_count": 0, "normal_followers_count": 29234, "friends_count": 27415, "listed_count": 141, "created_at": "Sun May 10 05:21:20 +0000 2009", "favourites_count": 123418, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 82220, "media_count": 3620, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "202020", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme4/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme4/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1172689882248024066/gLC492Yr_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1172689882248024066/gLC492Yr_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/39002335/1550404350", "profile_image_extensions_media_color": {"palette": [{"rgb": {"red": 226, "green": 210, "blue": 201}, "percentage": 50.02}, {"rgb": {"red": 35, "green": 39, "blue": 51}, "percentage": 30.36}, {"rgb": {"red": 180, "green": 144, "blue": 113}, "percentage": 10.03}, {"rgb": {"red": 113, "green": 93, "blue": 73}, "percentage": 4.13}, {"rgb": {"red": 32, "green": 38, "blue": 62}, "percentage": 0.79}]}, "profile_image_extensions_alt_text": null, "profile_image_extensions_media_availability": null, "profile_image_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_banner_extensions_alt_text": null, "profile_banner_extensions_media_availability": null, "profile_banner_extensions_media_color": {"palette": [{"rgb": {"red": 165, "green": 194, "blue": 196}, "percentage": 70.88}, {"rgb": {"red": 54, "green": 113, "blue": 175}, "percentage": 19.31}, {"rgb": {"red": 64, "green": 142, "blue": 181}, "percentage": 5.07}, {"rgb": {"red": 198, "green": 219, "blue": 209}, "percentage": 2.49}, {"rgb": {"red": 79, "green": 90, "blue": 117}, "percentage": 1.53}]}, "profile_banner_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_link_color": "FF0066", "profile_sidebar_border_color": "404040", "profile_sidebar_fill_color": "202020", "profile_text_color": "606060", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "pinned_tweet_ids": [1287961174210822144], "pinned_tweet_ids_str": ["1287961174210822144"], "has_custom_timelines": true, "can_dm": null, "following": null, "follow_request_sent": null, "notifications": null, "muting": null, "blocking": null, "blocked_by": null, "want_retweets": null, "advertiser_account_type": "promotable_user", "advertiser_account_service_levels": [], "profile_interstitial_type": "", "business_profile_state": "none", "translator_type": "none", "withheld_in_countries": [], "followed_by": null, "ext": {"highlightedLabel": {"r": {"ok": {}}, "ttl": -1}}, "require_some_consent": false}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:26.290594+02:00", "raw_value": {"id": 5676102, "id_str": "5676102", "name": "Scott Hanselman", "screen_name": "shanselman", "location": "Portland, Oregon", "description": "Code, OSS, STEM, Beyonc\u00e9, MSFT, Black Hair, Race, #T1D, @Hanselminutes inclusive podcast! https://t.co/vyDanTdIuM \u270c\ud83c\udffc\ud83d\udc39\ud83c\udf2e +TikTok https://t.co/sX9CQik9mu", "url": "https://t.co/BsXD3z7wyc", "entities": {"url": {"urls": [{"url": "https://t.co/BsXD3z7wyc", "expanded_url": "http://hanselman.com", "display_url": "hanselman.com", "indices": [0, 23]}]}, "description": {"urls": [{"url": "https://t.co/vyDanTdIuM", "expanded_url": "http://youtube.com/shanselman", "display_url": "youtube.com/shanselman", "indices": [90, 113]}, {"url": "https://t.co/sX9CQik9mu", "expanded_url": "http://heyfriends.io", "display_url": "heyfriends.io", "indices": [127, 150]}]}}, "protected": false, "followers_count": 272132, "fast_followers_count": 0, "normal_followers_count": 272132, "friends_count": 10372, "listed_count": 8428, "created_at": "Tue May 01 05:55:26 +0000 2007", "favourites_count": 146542, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": true, "statuses_count": 223324, "media_count": 13339, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "D1CDC1", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1133122333290291200/xV9gO-D6_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1133122333290291200/xV9gO-D6_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/5676102/1398280381", "profile_image_extensions_alt_text": null, "profile_image_extensions_media_color": {"palette": [{"rgb": {"red": 193, "green": 137, "blue": 103}, "percentage": 46.44}, {"rgb": {"red": 69, "green": 45, "blue": 28}, "percentage": 20.64}, {"rgb": {"red": 203, "green": 169, "blue": 160}, "percentage": 10.63}, {"rgb": {"red": 128, "green": 74, "blue": 42}, "percentage": 5.31}, {"rgb": {"red": 170, "green": 46, "blue": 32}, "percentage": 5.22}]}, "profile_image_extensions_media_availability": null, "profile_image_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_banner_extensions_media_color": {"palette": [{"rgb": {"red": 246, "green": 239, "blue": 221}, "percentage": 59.59}, {"rgb": {"red": 55, "green": 59, "blue": 81}, "percentage": 25.09}, {"rgb": {"red": 124, "green": 127, "blue": 127}, "percentage": 9.54}, {"rgb": {"red": 213, "green": 154, "blue": 137}, "percentage": 3.51}, {"rgb": {"red": 133, "green": 92, "blue": 97}, "percentage": 0.91}]}, "profile_banner_extensions_alt_text": null, "profile_banner_extensions_media_availability": null, "profile_banner_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_link_color": "72412C", "profile_sidebar_border_color": "B8AA9C", "profile_sidebar_fill_color": "B8AA9C", "profile_text_color": "696969", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "pinned_tweet_ids": [600014817894801409], "pinned_tweet_ids_str": ["600014817894801409"], "has_custom_timelines": true, "can_dm": null, "following": null, "follow_request_sent": null, "notifications": null, "muting": null, "blocking": null, "blocked_by": null, "want_retweets": null, "advertiser_account_type": "promotable_user", "advertiser_account_service_levels": [], "profile_interstitial_type": "", "business_profile_state": "none", "translator_type": "regular", "withheld_in_countries": [], "followed_by": null, "ext": {"highlightedLabel": {"r": {"ok": {}}, "ttl": -1}}, "require_some_consent": false}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:26.290814+02:00", "raw_value": {"id": 18082945, "id_str": "18082945", "name": "\ud83d\udc7d McSpocky\u2122 \ud83d\udde3\ud83c\uddfa\ud83c\uddf8\ud83c\udf0a\ud83d\udc89 #BuildBackBetter", "screen_name": "mcspocky", "location": "Northwest, USA", "description": "Check out https://t.co/9oFK2W26y2 As Amazon Associate I earn from qualifying purchases #Feminist #BlueWave2022 #BLM #WearAMask #Vaccinate Get #Vaccinated", "url": "https://t.co/UXNKIoZ8OC", "entities": {"url": {"urls": [{"url": "https://t.co/UXNKIoZ8OC", "expanded_url": "https://mcspocky.creator-spring.com/", "display_url": "mcspocky.creator-spring.com", "indices": [0, 23]}]}, "description": {"urls": [{"url": "https://t.co/9oFK2W26y2", "expanded_url": "http://amzn.to/3cS95Vl", "display_url": "amzn.to/3cS95Vl", "indices": [10, 33]}]}}, "protected": false, "followers_count": 288383, "fast_followers_count": 0, "normal_followers_count": 288383, "friends_count": 252244, "listed_count": 1016, "created_at": "Fri Dec 12 19:03:54 +0000 2008", "favourites_count": 259271, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 31028, "media_count": 1919, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "3300CC", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme5/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme5/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1262113247466942464/etyoAoMF_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1262113247466942464/etyoAoMF_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/18082945/1626926055", "profile_image_extensions_media_color": {"palette": [{"rgb": {"red": 0, "green": 1, "blue": 2}, "percentage": 45.95}, {"rgb": {"red": 211, "green": 209, "blue": 212}, "percentage": 10.7}, {"rgb": {"red": 1, "green": 10, "blue": 62}, "percentage": 8.14}, {"rgb": {"red": 1, "green": 11, "blue": 193}, "percentage": 6.28}, {"rgb": {"red": 190, "green": 2, "blue": 9}, "percentage": 5.55}]}, "profile_image_extensions_alt_text": null, "profile_image_extensions_media_availability": null, "profile_image_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_banner_extensions_alt_text": null, "profile_banner_extensions_media_availability": null, "profile_banner_extensions_media_color": {"palette": [{"rgb": {"red": 216, "green": 225, "blue": 244}, "percentage": 76.18}, {"rgb": {"red": 138, "green": 169, "blue": 212}, "percentage": 8.54}, {"rgb": {"red": 35, "green": 55, "blue": 101}, "percentage": 4.98}, {"rgb": {"red": 196, "green": 135, "blue": 160}, "percentage": 3.94}, {"rgb": {"red": 155, "green": 47, "blue": 83}, "percentage": 3.54}]}, "profile_banner_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_link_color": "6600FF", "profile_sidebar_border_color": "FFFFFF", "profile_sidebar_fill_color": "E3E4FF", "profile_text_color": "0F0000", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "pinned_tweet_ids": [1447482692296056833], "pinned_tweet_ids_str": ["1447482692296056833"], "has_custom_timelines": true, "can_dm": null, "following": null, "follow_request_sent": null, "notifications": null, "muting": null, "blocking": null, "blocked_by": null, "want_retweets": null, "advertiser_account_type": "promotable_user", "advertiser_account_service_levels": ["smb"], "profile_interstitial_type": "", "business_profile_state": "none", "translator_type": "none", "withheld_in_countries": [], "followed_by": null, "ext": {"highlightedLabel": {"r": {"ok": {}}, "ttl": -1}}, "require_some_consent": false}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:26.291010+02:00", "raw_value": {"id": 271445418, "id_str": "271445418", "name": "Robert Benzie", "screen_name": "robertbenzie", "location": "", "description": "Queen's Park Bureau Chief for the Toronto Star", "url": "http://t.co/dkarmcdJpm", "entities": {"url": {"urls": [{"url": "http://t.co/dkarmcdJpm", "expanded_url": "http://www.thestar.com/authors.benzie_rob.html", "display_url": "thestar.com/authors.benzie\u2026", "indices": [0, 22]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 47410, "fast_followers_count": 0, "normal_followers_count": 47410, "friends_count": 370, "listed_count": 828, "created_at": "Thu Mar 24 14:35:46 +0000 2011", "favourites_count": 13561, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": true, "statuses_count": 40177, "media_count": 4832, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/644143692312350720/ZBbiqdur_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/644143692312350720/ZBbiqdur_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/271445418/1434680528", "profile_image_extensions_media_color": {"palette": [{"rgb": {"red": 239, "green": 237, "blue": 240}, "percentage": 55.37}, {"rgb": {"red": 54, "green": 49, "blue": 46}, "percentage": 31.38}, {"rgb": {"red": 198, "green": 131, "blue": 102}, "percentage": 10.96}, {"rgb": {"red": 156, "green": 118, "blue": 99}, "percentage": 0.4}, {"rgb": {"red": 130, "green": 74, "blue": 51}, "percentage": 0.31}]}, "profile_image_extensions_alt_text": null, "profile_image_extensions_media_availability": null, "profile_image_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_banner_extensions_alt_text": null, "profile_banner_extensions_media_availability": null, "profile_banner_extensions_media_color": {"palette": [{"rgb": {"red": 25, "green": 25, "blue": 25}, "percentage": 72.35}, {"rgb": {"red": 213, "green": 213, "blue": 213}, "percentage": 26.61}]}, "profile_banner_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_link_color": "0084B4", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": false, "default_profile_image": false, "pinned_tweet_ids": [], "pinned_tweet_ids_str": [], "has_custom_timelines": true, "can_dm": null, "following": null, "follow_request_sent": null, "notifications": null, "muting": null, "blocking": null, "blocked_by": null, "want_retweets": null, "advertiser_account_type": "promotable_user", "advertiser_account_service_levels": ["analytics"], "profile_interstitial_type": "", "business_profile_state": "none", "translator_type": "none", "withheld_in_countries": [], "followed_by": null, "ext": {"highlightedLabel": {"r": {"ok": {}}, "ttl": -1}}, "require_some_consent": false}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:26.291390+02:00", "raw_value": {"id": 2753180147, "id_str": "2753180147", "name": "Radio Kielce", "screen_name": "RadioKielce", "location": "Kielce", "description": "Radio Kielce", "url": "https://t.co/M3MuQE01rZ", "entities": {"url": {"urls": [{"url": "https://t.co/M3MuQE01rZ", "expanded_url": "https://www.radio.kielce.pl/", "display_url": "radio.kielce.pl", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 1568, "fast_followers_count": 0, "normal_followers_count": 1568, "friends_count": 102, "listed_count": 6, "created_at": "Thu Aug 28 09:17:08 +0000 2014", "favourites_count": 31, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 13031, "media_count": 823, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/849256109739323392/IvyfoivX_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/849256109739323392/IvyfoivX_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/2753180147/1633601689", "profile_image_extensions_media_color": {"palette": [{"rgb": {"red": 255, "green": 255, "blue": 255}, "percentage": 65.6}, {"rgb": {"red": 0, "green": 0, "blue": 0}, "percentage": 20.77}, {"rgb": {"red": 254, "green": 0, "blue": 0}, "percentage": 12.37}, {"rgb": {"red": 251, "green": 164, "blue": 164}, "percentage": 0.48}, {"rgb": {"red": 248, "green": 111, "blue": 110}, "percentage": 0.37}]}, "profile_image_extensions_alt_text": null, "profile_image_extensions_media_availability": null, "profile_image_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_banner_extensions_alt_text": null, "profile_banner_extensions_media_availability": null, "profile_banner_extensions_media_color": {"palette": [{"rgb": {"red": 12, "green": 12, "blue": 11}, "percentage": 78.05}, {"rgb": {"red": 104, "green": 70, "blue": 35}, "percentage": 13.92}, {"rgb": {"red": 135, "green": 73, "blue": 39}, "percentage": 2.4}, {"rgb": {"red": 173, "green": 142, "blue": 50}, "percentage": 2.09}, {"rgb": {"red": 180, "green": 148, "blue": 86}, "percentage": 0.98}]}, "profile_banner_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_link_color": "1B95E0", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "has_extended_profile": false, "default_profile": false, "default_profile_image": false, "pinned_tweet_ids": [], "pinned_tweet_ids_str": [], "has_custom_timelines": true, "can_dm": null, "following": null, "follow_request_sent": null, "notifications": null, "muting": null, "blocking": null, "blocked_by": null, "want_retweets": null, "advertiser_account_type": "promotable_user", "advertiser_account_service_levels": ["analytics"], "profile_interstitial_type": "", "business_profile_state": "none", "translator_type": "none", "withheld_in_countries": [], "followed_by": null, "ext": {"highlightedLabel": {"r": {"ok": {}}, "ttl": -1}}, "require_some_consent": false}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:26.291612+02:00", "raw_value": {"id": 48289662, "id_str": "48289662", "name": "University of Oxford", "screen_name": "UniofOxford", "location": "Oxford, UK", "description": "Welcome to our official account \ud83d\udc4b Online 9am-5pm, Mon-Fri COVID-19 vaccine info:https://t.co/obpN0SIQZC", "url": "https://t.co/Jua6B1Wzln", "entities": {"url": {"urls": [{"url": "https://t.co/Jua6B1Wzln", "expanded_url": "http://www.ox.ac.uk", "display_url": "ox.ac.uk", "indices": [0, 23]}]}, "description": {"urls": [{"url": "https://t.co/obpN0SIQZC", "expanded_url": "http://bit.ly/Oxford-Vaccine", "display_url": "bit.ly/Oxford-Vaccine", "indices": [80, 103]}]}}, "protected": false, "followers_count": 768632, "fast_followers_count": 0, "normal_followers_count": 768632, "friends_count": 1378, "listed_count": 5096, "created_at": "Thu Jun 18 08:28:28 +0000 2009", "favourites_count": 15030, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": true, "statuses_count": 21135, "media_count": 8683, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1055770897091649536/1qDq-m41_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1055770897091649536/1qDq-m41_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/48289662/1630928780", "profile_image_extensions_alt_text": null, "profile_image_extensions_media_availability": null, "profile_image_extensions_media_color": {"palette": [{"rgb": {"red": 1, "green": 33, "blue": 72}, "percentage": 89.03}, {"rgb": {"red": 217, "green": 222, "blue": 228}, "percentage": 7.92}, {"rgb": {"red": 92, "green": 113, "blue": 134}, "percentage": 1.71}, {"rgb": {"red": 121, "green": 136, "blue": 155}, "percentage": 0.92}, {"rgb": {"red": 101, "green": 119, "blue": 143}, "percentage": 0.4}]}, "profile_image_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_banner_extensions_alt_text": null, "profile_banner_extensions_media_availability": null, "profile_banner_extensions_media_color": {"palette": [{"rgb": {"red": 0, "green": 33, "blue": 71}, "percentage": 40.21}, {"rgb": {"red": 244, "green": 173, "blue": 91}, "percentage": 39.46}, {"rgb": {"red": 246, "green": 98, "blue": 31}, "percentage": 7.7}, {"rgb": {"red": 160, "green": 172, "blue": 186}, "percentage": 5.0}, {"rgb": {"red": 118, "green": 101, "blue": 81}, "percentage": 4.12}]}, "profile_banner_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": true, "default_profile_image": false, "pinned_tweet_ids": [1446432247217807361], "pinned_tweet_ids_str": ["1446432247217807361"], "has_custom_timelines": true, "can_dm": null, "following": null, "follow_request_sent": null, "notifications": null, "muting": null, "blocking": null, "blocked_by": null, "want_retweets": null, "advertiser_account_type": "promotable_user", "advertiser_account_service_levels": ["smb", "media_studio"], "profile_interstitial_type": "", "business_profile_state": "none", "translator_type": "none", "withheld_in_countries": [], "followed_by": null, "ext": {"highlightedLabel": {"r": {"ok": {}}, "ttl": -1}}, "require_some_consent": false}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:26.291836+02:00", "raw_value": {"id": 82649720, "id_str": "82649720", "name": "BDA British Dietetic Association", "screen_name": "BDA_Dietitians", "location": "UK", "description": "The professional association & trade union for UK dietitians. The UK's largest organisation of food & nutrition professionals. Press enquiries: 0121 200 8018", "url": "http://t.co/lvGN3ueDuf", "entities": {"url": {"urls": [{"url": "http://t.co/lvGN3ueDuf", "expanded_url": "http://www.bda.uk.com", "display_url": "bda.uk.com", "indices": [0, 22]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 32529, "fast_followers_count": 0, "normal_followers_count": 32529, "friends_count": 1593, "listed_count": 369, "created_at": "Thu Oct 15 16:05:21 +0000 2009", "favourites_count": 12385, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": true, "statuses_count": 21695, "media_count": 3148, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/439353910197616640/gP4UC4hB_normal.jpeg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/439353910197616640/gP4UC4hB_normal.jpeg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/82649720/1464175342", "profile_image_extensions_alt_text": null, "profile_image_extensions_media_availability": null, "profile_image_extensions_media_color": null, "profile_image_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_banner_extensions_alt_text": null, "profile_banner_extensions_media_availability": null, "profile_banner_extensions_media_color": null, "profile_banner_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_link_color": "333333", "profile_sidebar_border_color": "FFFFFF", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "0084B4", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": false, "default_profile_image": false, "pinned_tweet_ids": [], "pinned_tweet_ids_str": [], "has_custom_timelines": true, "can_dm": null, "following": null, "follow_request_sent": null, "notifications": null, "muting": null, "blocking": null, "blocked_by": null, "want_retweets": null, "advertiser_account_type": "promotable_user", "advertiser_account_service_levels": [], "profile_interstitial_type": "", "business_profile_state": "none", "translator_type": "regular", "withheld_in_countries": [], "followed_by": null, "ext": {"highlightedLabel": {"r": {"ok": {}}, "ttl": -1}}, "require_some_consent": false}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:26.292096+02:00", "raw_value": {"id": 189072881, "id_str": "189072881", "name": "redsarah99 #BlackLivesMatter", "screen_name": "redsarah99", "location": "", "description": "https://t.co/o5ns7FdZMi", "url": "https://t.co/7G9WM4z8V3", "entities": {"url": {"urls": [{"url": "https://t.co/7G9WM4z8V3", "expanded_url": "http://www.thecorbynproject.com", "display_url": "thecorbynproject.com", "indices": [0, 23]}]}, "description": {"urls": [{"url": "https://t.co/o5ns7FdZMi", "expanded_url": "https://thecorbynproject.com/", "display_url": "thecorbynproject.com", "indices": [0, 23]}]}}, "protected": false, "followers_count": 22563, "fast_followers_count": 0, "normal_followers_count": 22563, "friends_count": 14228, "listed_count": 101, "created_at": "Fri Sep 10 09:22:52 +0000 2010", "favourites_count": 127709, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 270081, "media_count": 31997, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "ACDED6", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme18/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme18/bg.gif", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1444084504126267395/qckd6d0B_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1444084504126267395/qckd6d0B_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/189072881/1633131582", "profile_image_extensions_media_color": {"palette": [{"rgb": {"red": 255, "green": 255, "blue": 255}, "percentage": 61.16}, {"rgb": {"red": 61, "green": 43, "blue": 36}, "percentage": 17.07}, {"rgb": {"red": 138, "green": 104, "blue": 97}, "percentage": 5.94}, {"rgb": {"red": 121, "green": 33, "blue": 20}, "percentage": 5.53}, {"rgb": {"red": 109, "green": 66, "blue": 47}, "percentage": 3.91}]}, "profile_image_extensions_alt_text": null, "profile_image_extensions_media_availability": null, "profile_image_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_banner_extensions_alt_text": null, "profile_banner_extensions_media_availability": null, "profile_banner_extensions_media_color": {"palette": [{"rgb": {"red": 255, "green": 255, "blue": 255}, "percentage": 95.75}, {"rgb": {"red": 138, "green": 138, "blue": 138}, "percentage": 4.25}]}, "profile_banner_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_link_color": "038543", "profile_sidebar_border_color": "EEEEEE", "profile_sidebar_fill_color": "F6F6F6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": false, "default_profile_image": false, "pinned_tweet_ids": [1444048036292857857], "pinned_tweet_ids_str": ["1444048036292857857"], "has_custom_timelines": true, "can_dm": null, "following": null, "follow_request_sent": null, "notifications": null, "muting": null, "blocking": null, "blocked_by": null, "want_retweets": null, "advertiser_account_type": "promotable_user", "advertiser_account_service_levels": ["analytics"], "profile_interstitial_type": "", "business_profile_state": "none", "translator_type": "none", "withheld_in_countries": [], "followed_by": null, "ext": {"highlightedLabel": {"r": {"ok": {}}, "ttl": -1}}, "require_some_consent": false}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:26.292357+02:00", "raw_value": {"id": 233788247, "id_str": "233788247", "name": "Megan Ranney MD MPH \ud83d\uddfd", "screen_name": "meganranney", "location": "Providence RI", "description": "I fix problems and promote health. ER doc @Brown_Emergency\ud83d\udd38\ufe0f Director @BrownDigiHealth\ud83d\udd38\ufe0f Cofounder @researchaffirm @getusppe #ThisIsOurLane", "url": "https://t.co/93jriEINZj", "entities": {"url": {"urls": [{"url": "https://t.co/93jriEINZj", "expanded_url": "https://vivo.brown.edu/display/mranney", "display_url": "vivo.brown.edu/display/mranney", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 99615, "fast_followers_count": 0, "normal_followers_count": 99615, "friends_count": 3230, "listed_count": 1860, "created_at": "Tue Jan 04 03:19:07 +0000 2011", "favourites_count": 137575, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": true, "statuses_count": 71863, "media_count": 1602, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme17/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme17/bg.gif", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1240450527886028805/bAeVpwvT_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1240450527886028805/bAeVpwvT_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/233788247/1584674862", "profile_image_extensions_alt_text": null, "profile_image_extensions_media_availability": null, "profile_image_extensions_media_color": {"palette": [{"rgb": {"red": 205, "green": 208, "blue": 212}, "percentage": 54.08}, {"rgb": {"red": 47, "green": 49, "blue": 48}, "percentage": 29.61}, {"rgb": {"red": 89, "green": 62, "blue": 48}, "percentage": 8.82}, {"rgb": {"red": 184, "green": 135, "blue": 111}, "percentage": 3.08}, {"rgb": {"red": 81, "green": 97, "blue": 107}, "percentage": 1.6}]}, "profile_image_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_banner_extensions_media_color": {"palette": [{"rgb": {"red": 254, "green": 254, "blue": 254}, "percentage": 91.93}, {"rgb": {"red": 104, "green": 97, "blue": 96}, "percentage": 3.72}, {"rgb": {"red": 101, "green": 116, "blue": 158}, "percentage": 2.07}, {"rgb": {"red": 198, "green": 147, "blue": 146}, "percentage": 0.85}, {"rgb": {"red": 194, "green": 77, "blue": 77}, "percentage": 0.35}]}, "profile_banner_extensions_alt_text": null, "profile_banner_extensions_media_availability": null, "profile_banner_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_link_color": "1B95E0", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "has_extended_profile": false, "default_profile": false, "default_profile_image": false, "pinned_tweet_ids": [1338841290100903937], "pinned_tweet_ids_str": ["1338841290100903937"], "has_custom_timelines": true, "can_dm": null, "following": null, "follow_request_sent": null, "notifications": null, "muting": null, "blocking": null, "blocked_by": null, "want_retweets": null, "advertiser_account_type": "promotable_user", "advertiser_account_service_levels": [], "profile_interstitial_type": "", "business_profile_state": "none", "translator_type": "none", "withheld_in_countries": [], "followed_by": null, "ext": {"highlightedLabel": {"r": {"ok": {}}, "ttl": -1}}, "require_some_consent": false}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:26.292553+02:00", "raw_value": {"id": 194399035, "id_str": "194399035", "name": "Rzeczpospolita", "screen_name": "rzeczpospolita", "location": "Polska", "description": "Rzeczpospolita to jeden z lider\u00f3w prasy codziennej w Polsce. Jest najcz\u0119\u015bciej cytowan\u0105 gazet\u0105 w kraju. Oto jedyny oficjalny profil Rz.", "url": "https://t.co/lg4AvBS252", "entities": {"url": {"urls": [{"url": "https://t.co/lg4AvBS252", "expanded_url": "http://www.rp.pl", "display_url": "rp.pl", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 232089, "fast_followers_count": 0, "normal_followers_count": 232089, "friends_count": 647, "listed_count": 980, "created_at": "Fri Sep 24 01:14:56 +0000 2010", "favourites_count": 1954, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": true, "statuses_count": 219787, "media_count": 38916, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "F7F7F7", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme7/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme7/bg.gif", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1410501087862341632/xn0fmSY9_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1410501087862341632/xn0fmSY9_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/194399035/1631616273", "profile_image_extensions_alt_text": null, "profile_image_extensions_media_availability": null, "profile_image_extensions_media_color": {"palette": [{"rgb": {"red": 206, "green": 206, "blue": 206}, "percentage": 93.55}, {"rgb": {"red": 82, "green": 82, "blue": 82}, "percentage": 3.54}]}, "profile_image_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_banner_extensions_alt_text": null, "profile_banner_extensions_media_availability": null, "profile_banner_extensions_media_color": {"palette": [{"rgb": {"red": 229, "green": 245, "blue": 219}, "percentage": 95.24}, {"rgb": {"red": 127, "green": 136, "blue": 122}, "percentage": 2.51}, {"rgb": {"red": 28, "green": 28, "blue": 28}, "percentage": 2.22}]}, "profile_banner_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_link_color": "CC0000", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "F3F3F3", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": false, "default_profile_image": false, "pinned_tweet_ids": [], "pinned_tweet_ids_str": [], "has_custom_timelines": true, "can_dm": null, "following": null, "follow_request_sent": null, "notifications": null, "muting": null, "blocking": null, "blocked_by": null, "want_retweets": null, "advertiser_account_type": "promotable_user", "advertiser_account_service_levels": ["smb"], "profile_interstitial_type": "", "business_profile_state": "none", "translator_type": "none", "withheld_in_countries": [], "followed_by": null, "ext": {"highlightedLabel": {"r": {"ok": {}}, "ttl": -1}}, "require_some_consent": false}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:26.292747+02:00", "raw_value": {"id": 20751449, "id_str": "20751449", "name": "The Hindu", "screen_name": "the_hindu", "location": "Chennai, India", "description": "News feeds from India's National Newspaper", "url": "http://t.co/s1JTQu1K46", "entities": {"url": {"urls": [{"url": "http://t.co/s1JTQu1K46", "expanded_url": "http://www.thehindu.com/", "display_url": "thehindu.com", "indices": [0, 22]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 7251601, "fast_followers_count": 0, "normal_followers_count": 7251601, "friends_count": 211, "listed_count": 7226, "created_at": "Fri Feb 13 06:04:24 +0000 2009", "favourites_count": 154, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": true, "statuses_count": 402743, "media_count": 35729, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "F2F2F2", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1061900452311121920/jo7qrMTA_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1061900452311121920/jo7qrMTA_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/20751449/1587629075", "profile_image_extensions_alt_text": null, "profile_image_extensions_media_availability": null, "profile_image_extensions_media_color": {"palette": [{"rgb": {"red": 255, "green": 255, "blue": 255}, "percentage": 85.7}, {"rgb": {"red": 40, "green": 40, "blue": 40}, "percentage": 11.74}]}, "profile_image_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_banner_extensions_alt_text": null, "profile_banner_extensions_media_availability": null, "profile_banner_extensions_media_color": {"palette": [{"rgb": {"red": 240, "green": 240, "blue": 240}, "percentage": 93.66}, {"rgb": {"red": 112, "green": 112, "blue": 112}, "percentage": 3.83}, {"rgb": {"red": 111, "green": 159, "blue": 191}, "percentage": 2.18}, {"rgb": {"red": 60, "green": 56, "blue": 58}, "percentage": 0.29}, {"rgb": {"red": 142, "green": 140, "blue": 137}, "percentage": 0.24}]}, "profile_banner_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_link_color": "008A96", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "D1D1D1", "profile_text_color": "000000", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": false, "default_profile_image": false, "pinned_tweet_ids": [], "pinned_tweet_ids_str": [], "has_custom_timelines": true, "can_dm": null, "following": null, "follow_request_sent": null, "notifications": null, "muting": null, "blocking": null, "blocked_by": null, "want_retweets": null, "advertiser_account_type": "promotable_user", "advertiser_account_service_levels": ["smb", "media_studio"], "profile_interstitial_type": "", "business_profile_state": "none", "translator_type": "none", "withheld_in_countries": [], "followed_by": null, "ext": {"highlightedLabel": {"r": {"ok": {}}, "ttl": -1}}, "require_some_consent": false}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:26.293314+02:00", "raw_value": {"id": 1112700018572644352, "id_str": "1112700018572644352", "name": "residuum", "screen_name": "residuum05", "location": "", "description": "", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 1086, "fast_followers_count": 0, "normal_followers_count": 1086, "friends_count": 1105, "listed_count": 3, "created_at": "Mon Apr 01 12:55:32 +0000 2019", "favourites_count": 6697, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 17281, "media_count": 4077, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "F5F8FA", "profile_background_image_url": null, "profile_background_image_url_https": null, "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1426070879927144448/F1OvEqms_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1426070879927144448/F1OvEqms_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1112700018572644352/1603552093", "profile_image_extensions_alt_text": null, "profile_image_extensions_media_availability": null, "profile_image_extensions_media_color": {"palette": [{"rgb": {"red": 39, "green": 31, "blue": 29}, "percentage": 78.93}, {"rgb": {"red": 172, "green": 150, "blue": 109}, "percentage": 10.53}, {"rgb": {"red": 104, "green": 54, "blue": 57}, "percentage": 6.76}, {"rgb": {"red": 229, "green": 225, "blue": 215}, "percentage": 1.41}, {"rgb": {"red": 33, "green": 34, "blue": 29}, "percentage": 0.67}]}, "profile_image_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_banner_extensions_alt_text": null, "profile_banner_extensions_media_color": {"palette": [{"rgb": {"red": 62, "green": 69, "blue": 64}, "percentage": 50.49}, {"rgb": {"red": 178, "green": 175, "blue": 170}, "percentage": 24.0}, {"rgb": {"red": 177, "green": 144, "blue": 123}, "percentage": 11.88}, {"rgb": {"red": 65, "green": 82, "blue": 97}, "percentage": 3.85}, {"rgb": {"red": 70, "green": 75, "blue": 44}, "percentage": 1.36}]}, "profile_banner_extensions_media_availability": null, "profile_banner_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": true, "default_profile_image": false, "pinned_tweet_ids": [1155415748875051008], "pinned_tweet_ids_str": ["1155415748875051008"], "has_custom_timelines": true, "can_dm": null, "following": null, "follow_request_sent": null, "notifications": null, "muting": null, "blocking": null, "blocked_by": null, "want_retweets": null, "advertiser_account_type": "promotable_user", "advertiser_account_service_levels": ["analytics"], "profile_interstitial_type": "", "business_profile_state": "none", "translator_type": "none", "withheld_in_countries": [], "followed_by": null, "ext": {"highlightedLabel": {"r": {"ok": {}}, "ttl": -1}}, "require_some_consent": false}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:26.297234+02:00", "raw_value": {"id": 48706493, "id_str": "48706493", "name": "ranjona banerji \ud83c\uddee\ud83c\uddf3", "screen_name": "ranjona", "location": "Dehradun", "description": "Old School Journalist. Tennis fan. Roger Federer. Anti Bigot. Diehard Bombaywallah, Mumbaikar now in Dehradun.", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 26675, "fast_followers_count": 0, "normal_followers_count": 26675, "friends_count": 3562, "listed_count": 203, "created_at": "Fri Jun 19 13:35:45 +0000 2009", "favourites_count": 278630, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 293254, "media_count": 1573, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "3B94D9", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme10/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme10/bg.gif", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1441815308000317440/EfCSm2gT_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1441815308000317440/EfCSm2gT_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/48706493/1631531692", "profile_image_extensions_alt_text": null, "profile_image_extensions_media_availability": null, "profile_image_extensions_media_color": {"palette": [{"rgb": {"red": 132, "green": 113, "blue": 110}, "percentage": 44.18}, {"rgb": {"red": 204, "green": 174, "blue": 171}, "percentage": 27.74}, {"rgb": {"red": 192, "green": 159, "blue": 195}, "percentage": 8.23}, {"rgb": {"red": 137, "green": 67, "blue": 71}, "percentage": 7.49}, {"rgb": {"red": 173, "green": 127, "blue": 103}, "percentage": 4.74}]}, "profile_image_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_banner_extensions_alt_text": null, "profile_banner_extensions_media_availability": null, "profile_banner_extensions_media_color": {"palette": [{"rgb": {"red": 116, "green": 107, "blue": 105}, "percentage": 46.38}, {"rgb": {"red": 186, "green": 193, "blue": 186}, "percentage": 41.15}, {"rgb": {"red": 77, "green": 101, "blue": 83}, "percentage": 7.7}, {"rgb": {"red": 55, "green": 57, "blue": 54}, "percentage": 1.98}, {"rgb": {"red": 133, "green": 182, "blue": 166}, "percentage": 0.65}]}, "profile_banner_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_link_color": "1B95E0", "profile_sidebar_border_color": "FFFFFF", "profile_sidebar_fill_color": "7AC3EE", "profile_text_color": "3D1957", "profile_use_background_image": false, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "pinned_tweet_ids": [1422097880039321606], "pinned_tweet_ids_str": ["1422097880039321606"], "has_custom_timelines": false, "can_dm": null, "following": null, "follow_request_sent": null, "notifications": null, "muting": null, "blocking": null, "blocked_by": null, "want_retweets": null, "advertiser_account_type": "promotable_user", "advertiser_account_service_levels": ["analytics"], "profile_interstitial_type": "", "business_profile_state": "none", "translator_type": "none", "withheld_in_countries": [], "followed_by": null, "ext": {"highlightedLabel": {"r": {"ok": {}}, "ttl": -1}}, "require_some_consent": false}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:26.297831+02:00", "raw_value": {"id": 1288653700349571072, "id_str": "1288653700349571072", "name": "The Epoch Times Australia \ud83c\udde6\ud83c\uddfa", "screen_name": "AuEpochTimes", "location": "Australia", "description": "Australian edition of the Epoch Times. An independent voice in print & online. Integrity & truthfulness in reporting.", "url": "https://t.co/JhX5azWwCn", "entities": {"url": {"urls": [{"url": "https://t.co/JhX5azWwCn", "expanded_url": "http://theepochtimes.com/Australia", "display_url": "theepochtimes.com/Australia", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 2005, "fast_followers_count": 0, "normal_followers_count": 2005, "friends_count": 170, "listed_count": 21, "created_at": "Thu Jul 30 01:53:08 +0000 2020", "favourites_count": 1622, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 6908, "media_count": 68, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "F5F8FA", "profile_background_image_url": null, "profile_background_image_url_https": null, "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1288654635125760000/Sd4jIIxW_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1288654635125760000/Sd4jIIxW_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1288653700349571072/1596254063", "profile_image_extensions_media_color": {"palette": [{"rgb": {"red": 0, "green": 58, "blue": 108}, "percentage": 77.87}, {"rgb": {"red": 40, "green": 40, "blue": 40}, "percentage": 10.88}, {"rgb": {"red": 219, "green": 228, "blue": 231}, "percentage": 8.72}, {"rgb": {"red": 101, "green": 133, "blue": 163}, "percentage": 1.5}, {"rgb": {"red": 117, "green": 141, "blue": 163}, "percentage": 0.46}]}, "profile_image_extensions_alt_text": null, "profile_image_extensions_media_availability": null, "profile_image_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_banner_extensions_alt_text": null, "profile_banner_extensions_media_color": {"palette": [{"rgb": {"red": 26, "green": 21, "blue": 16}, "percentage": 32.16}, {"rgb": {"red": 106, "green": 58, "blue": 26}, "percentage": 22.26}, {"rgb": {"red": 190, "green": 192, "blue": 198}, "percentage": 18.88}, {"rgb": {"red": 176, "green": 151, "blue": 120}, "percentage": 7.65}, {"rgb": {"red": 175, "green": 100, "blue": 32}, "percentage": 5.52}]}, "profile_banner_extensions_media_availability": null, "profile_banner_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": true, "default_profile_image": false, "pinned_tweet_ids": [1448492559576207360], "pinned_tweet_ids_str": ["1448492559576207360"], "has_custom_timelines": true, "can_dm": null, "following": null, "follow_request_sent": null, "notifications": null, "muting": null, "blocking": null, "blocked_by": null, "want_retweets": null, "advertiser_account_type": "promotable_user", "advertiser_account_service_levels": ["analytics"], "profile_interstitial_type": "", "business_profile_state": "none", "translator_type": "none", "withheld_in_countries": [], "followed_by": null, "ext": {"highlightedLabel": {"r": {"ok": {}}, "ttl": -1}}, "require_some_consent": false}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:26.298096+02:00", "raw_value": {"id": 2387086992, "id_str": "2387086992", "name": "Janusz Biznesu", "screen_name": "BukkakeWarrior1", "location": "Bia\u0142ystok, Polska", "description": "G\u0142\u00f3wnie polityka i sport. Raczej nic ciekawego.", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 104, "fast_followers_count": 0, "normal_followers_count": 104, "friends_count": 1543, "listed_count": 1, "created_at": "Thu Mar 13 14:23:09 +0000 2014", "favourites_count": 26203, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 4929, "media_count": 302, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1287830140886581249/easmeAqV_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1287830140886581249/easmeAqV_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/2387086992/1595882158", "profile_image_extensions_alt_text": null, "profile_image_extensions_media_availability": null, "profile_image_extensions_media_color": {"palette": [{"rgb": {"red": 7, "green": 4, "blue": 6}, "percentage": 30.03}, {"rgb": {"red": 90, "green": 199, "blue": 242}, "percentage": 27.76}, {"rgb": {"red": 255, "green": 255, "blue": 255}, "percentage": 24.12}, {"rgb": {"red": 100, "green": 43, "blue": 57}, "percentage": 5.2}, {"rgb": {"red": 171, "green": 38, "blue": 53}, "percentage": 4.6}]}, "profile_image_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_banner_extensions_media_color": {"palette": [{"rgb": {"red": 255, "green": 255, "blue": 255}, "percentage": 98.73}, {"rgb": {"red": 235, "green": 202, "blue": 188}, "percentage": 1.13}, {"rgb": {"red": 156, "green": 146, "blue": 143}, "percentage": 0.15}]}, "profile_banner_extensions_alt_text": null, "profile_banner_extensions_media_availability": null, "profile_banner_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": true, "default_profile_image": false, "pinned_tweet_ids": [], "pinned_tweet_ids_str": [], "has_custom_timelines": false, "can_dm": null, "following": null, "follow_request_sent": null, "notifications": null, "muting": null, "blocking": null, "blocked_by": null, "want_retweets": null, "advertiser_account_type": "none", "advertiser_account_service_levels": [], "profile_interstitial_type": "", "business_profile_state": "none", "translator_type": "none", "withheld_in_countries": [], "followed_by": null, "ext": {"highlightedLabel": {"r": {"ok": {}}, "ttl": -1}}, "require_some_consent": false}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:26.298277+02:00", "raw_value": {"id": 4845233595, "id_str": "4845233595", "name": "Agencja Oceny Technologii Medycznych i Taryfikacji", "screen_name": "aotmit", "location": "Polska ", "description": "Oficjalny profil Agencji Oceny Technologii Medycznych i Taryfikacji", "url": "https://t.co/xd5f1t9PNZ", "entities": {"url": {"urls": [{"url": "https://t.co/xd5f1t9PNZ", "expanded_url": "http://www.aotm.gov.pl", "display_url": "aotm.gov.pl", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 1832, "fast_followers_count": 0, "normal_followers_count": 1832, "friends_count": 207, "listed_count": 15, "created_at": "Mon Jan 25 12:04:00 +0000 2016", "favourites_count": 88, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 1203, "media_count": 420, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "F5F8FA", "profile_background_image_url": null, "profile_background_image_url_https": null, "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/691593526723919872/GGPb13de_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/691593526723919872/GGPb13de_normal.jpg", "profile_image_extensions_alt_text": null, "profile_image_extensions_media_availability": null, "profile_image_extensions_media_color": null, "profile_image_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": true, "default_profile_image": false, "pinned_tweet_ids": [], "pinned_tweet_ids_str": [], "has_custom_timelines": false, "can_dm": null, "following": null, "follow_request_sent": null, "notifications": null, "muting": null, "blocking": null, "blocked_by": null, "want_retweets": null, "advertiser_account_type": "promotable_user", "advertiser_account_service_levels": ["analytics"], "profile_interstitial_type": "", "business_profile_state": "none", "translator_type": "none", "withheld_in_countries": [], "followed_by": null, "ext": {"highlightedLabel": {"r": {"ok": {}}, "ttl": -1}}, "require_some_consent": false}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:26.298485+02:00", "raw_value": {"id": 1430030382519386112, "id_str": "1430030382519386112", "name": "Pyae Zin Lay", "screen_name": "pyae_zinburma", "location": "United States", "description": "Edu-Activist || Eyes on #WhatsHappeningInMyanmar || Tweety For Burma Watch \ud83d\udcbb |", "url": "https://t.co/PqW6KwlgzE", "entities": {"url": {"urls": [{"url": "https://t.co/PqW6KwlgzE", "expanded_url": "https://charity.gofundme.com/o/en/campaign/crph", "display_url": "charity.gofundme.com/o/en/campaign/\u2026", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 591, "fast_followers_count": 0, "normal_followers_count": 591, "friends_count": 382, "listed_count": 1, "created_at": "Tue Aug 24 04:53:19 +0000 2021", "favourites_count": 6480, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 2301, "media_count": 611, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "F5F8FA", "profile_background_image_url": null, "profile_background_image_url_https": null, "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1438450658584117249/NGGKw6as_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1438450658584117249/NGGKw6as_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1430030382519386112/1631712833", "profile_image_extensions_alt_text": null, "profile_image_extensions_media_availability": null, "profile_image_extensions_media_color": {"palette": [{"rgb": {"red": 213, "green": 204, "blue": 205}, "percentage": 48.08}, {"rgb": {"red": 29, "green": 27, "blue": 38}, "percentage": 31.62}, {"rgb": {"red": 157, "green": 104, "blue": 92}, "percentage": 3.89}, {"rgb": {"red": 65, "green": 43, "blue": 37}, "percentage": 3.31}, {"rgb": {"red": 63, "green": 77, "blue": 119}, "percentage": 2.29}]}, "profile_image_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_banner_extensions_media_color": {"palette": [{"rgb": {"red": 32, "green": 29, "blue": 22}, "percentage": 78.27}, {"rgb": {"red": 166, "green": 146, "blue": 121}, "percentage": 18.8}, {"rgb": {"red": 104, "green": 54, "blue": 35}, "percentage": 2.36}, {"rgb": {"red": 102, "green": 68, "blue": 44}, "percentage": 0.4}, {"rgb": {"red": 182, "green": 132, "blue": 92}, "percentage": 0.18}]}, "profile_banner_extensions_alt_text": null, "profile_banner_extensions_media_availability": null, "profile_banner_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": true, "default_profile_image": false, "pinned_tweet_ids": [], "pinned_tweet_ids_str": [], "has_custom_timelines": false, "can_dm": null, "following": null, "follow_request_sent": null, "notifications": null, "muting": null, "blocking": null, "blocked_by": null, "want_retweets": null, "advertiser_account_type": "none", "advertiser_account_service_levels": [], "profile_interstitial_type": "", "business_profile_state": "none", "translator_type": "none", "withheld_in_countries": [], "followed_by": null, "ext": {"highlightedLabel": {"r": {"ok": {}}, "ttl": -1}}, "require_some_consent": false}}
last_scrap_zero False is_cursor True
need_guest_token True
run request RequestDetails(http_method=<HttpMethod.GET: 1>, url='https://twitter.com/i/api/2/search/adaptive.json', headers={'Authorization': 'Bearer AAAAAAAAAAAAAAAAAAAAANRILgAAAAAAnNwIzUejRCOuH5E6I8xnZz4puTs%3D1Zv7ttfk8LF81IUq16cHjhLTvJu4FA33AGWWjCpTnA', 'x-guest-token': '1448607857604272138'}, params={'include_profile_interstitial_type': '1', 'include_blocking': '1', 'include_blocked_by': '1', 'include_followed_by': '1', 'include_want_retweets': '1', 'include_mute_edge': '1', 'include_can_dm': '1', 'include_can_media_tag': '1', 'skip_status': '1', 'cards_platform': 'Web-12', 'include_cards': '1', 'include_ext_alt_text': 'true', 'include_quote_count': 'true', 'include_reply_count': '1', 'tweet_mode': 'extended', 'include_entities': 'true', 'include_user_entities': 'true', 'include_ext_media_color': 'true', 'include_ext_media_availability': 'true', 'send_error_codes': 'true', 'simple_quoted_tweet': 'true', 'q': '#covid19', 'count': 20, 'query_source': 'typed_query', 'pc': '1', 'spelling_corrections': '1', 'ext': 'mediaStats,highlightedLabel,voiceInfo', 'cursor': 'scroll:thGAVUV0VFVBYBFoCUsq31n6iaKBIYlAUSY8LrAAAB9D-AYk3S8an8AAAAUBQaaAeY1mACFBoPD7sWUAEUGnlaxZZABRQaWf31F7AEFBpdCKsXMAEUGlm_55cQCBQadJ4A1hAFFBpeqJMVIAIUGm_w9RegBxQaUxArl6ABFBp6i3QXMAAUGgEeH1VwBRQaUOrC1mABFBnrZa1X0AAUGljCzxcgAhQaQy-01kAAFBm9IOZWUAUUGjdwrxfQBBQaOrcU1lAFFBpkExxXIAIUGlkrZRcQARQaZ2xNV7AGFBp84kuXoAEUGl3J3ZYQABQae_5q1yAAFBp0fAOUYAYUGk6wjZZQAhQaSWqvlyAEFBpUTBFXEAAUGm7VrVZABhQaXsMB1kAEFBok4B5X0AAUGmTHYhZAABQaWYyFFhACFBpUT-8XIAMUGl6LRFZAARQZ7L9iVhACFBpwBY6XMAIUGmPSONZQAxQaQpzqVyAAFBowJB7XoAUUGlqJI1cgAhQaYBhPVyADFBpy6DUXsAAUGhantZcwARQaRFyJ1hACFBpsb1JWEAQUGlpbIxfQAhQaXJ3UlmAFFBp6B4kXIAAUGmVQoBZQABQaeUed1yACFBpDa65XsAEUGkKeMVVAAxQaefDYV7ABFBpR6VwXsAEUGjcGzFcgAhQaS0AclhADFBpQJ38XIAEUGlycJ9cQAhQZxUzPFGAHFBpYX4fXEAAUGmY-_BZAARQaEabqlkACFBpcODFWYAQUGlh7jdfQARQZ7HlEVhADFBoUTvlWEAAUGn0XvRcQAhQafEKO1yAAFBooTkyWEAAUGe95KNVADBQaCbb6VlACFBpeUv8XIAQUGnnowFcwARQaXW5Ll9AGFBpcit0XEAQUGmjmcRfQARQabsUGV7ABFBpyIhVWYAVhFZj8eRWAiXoYBlRPUElDUzWgARUGFQAA'}, timeout=20)
200
{"object_type": "TweetRaw", "download_datetime": "2021-10-14T13:13:27.470782+02:00", "raw_value": {"created_at": "Wed Oct 13 18:02:23 +0000 2021", "id": 1448348406808674305, "id_str": "1448348406808674305", "full_text": "So my puja ends, My Father's 20 years dream vanished in seconds , \n \u09b6\u09cd\u09b0\u09c0 \u09b6\u09cd\u09b0\u09c0 \u099a\u09be\u09a8\u09cd\u09a6\u09ae\u09a8\u09bf \u0995\u09be\u09b2\u09c0\u09ac\u09be\u09a1\u09bc\u09bf , \u0995\u09c1\u09ae\u09bf\u09b2\u09be https://t.co/NFolnTXUoY", "truncated": false, "display_text_range": [0, 105], "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [], "media": [{"id": 1448348396251607042, "id_str": "1448348396251607042", "indices": [106, 129], "media_url": "http://pbs.twimg.com/media/FBmRMVWVcAImgZl.jpg", "media_url_https": "https://pbs.twimg.com/media/FBmRMVWVcAImgZl.jpg", "url": "https://t.co/NFolnTXUoY", "display_url": "pic.twitter.com/NFolnTXUoY", "expanded_url": "https://twitter.com/avroneel90/status/1448348406808674305/photo/1", "type": "photo", "original_info": {"width": 1080, "height": 1440, "focus_rects": [{"x": 0, "y": 454, "h": 605, "w": 1080}, {"x": 0, "y": 216, "h": 1080, "w": 1080}, {"x": 0, "y": 141, "h": 1231, "w": 1080}, {"x": 0, "y": 0, "h": 1440, "w": 720}, {"x": 0, "y": 0, "h": 1440, "w": 1080}]}, "sizes": {"large": {"w": 1080, "h": 1440, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 900, "h": 1200, "resize": "fit"}, "small": {"w": 510, "h": 680, "resize": "fit"}}}, {"id": 1448348400680771586, "id_str": "1448348400680771586", "indices": [106, 129], "media_url": "http://pbs.twimg.com/media/FBmRMl2VIAI6svZ.jpg", "media_url_https": "https://pbs.twimg.com/media/FBmRMl2VIAI6svZ.jpg", "url": "https://t.co/NFolnTXUoY", "display_url": "pic.twitter.com/NFolnTXUoY", "expanded_url": "https://twitter.com/avroneel90/status/1448348406808674305/photo/1", "type": "photo", "original_info": {"width": 1080, "height": 810, "focus_rects": [{"x": 0, "y": 157, "h": 605, "w": 1080}, {"x": 108, "y": 0, "h": 810, "w": 810}, {"x": 158, "y": 0, "h": 810, "w": 711}, {"x": 311, "y": 0, "h": 810, "w": 405}, {"x": 0, "y": 0, "h": 810, "w": 1080}]}, "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 1080, "h": 810, "resize": "fit"}, "large": {"w": 1080, "h": 810, "resize": "fit"}, "small": {"w": 680, "h": 510, "resize": "fit"}}}, {"id": 1448348404468183048, "id_str": "1448348404468183048", "indices": [106, 129], "media_url": "http://pbs.twimg.com/media/FBmRMz9UcAgLKjc.jpg", "media_url_https": "https://pbs.twimg.com/media/FBmRMz9UcAgLKjc.jpg", "url": "https://t.co/NFolnTXUoY", "display_url": "pic.twitter.com/NFolnTXUoY", "expanded_url": "https://twitter.com/avroneel90/status/1448348406808674305/photo/1", "type": "photo", "original_info": {"width": 1080, "height": 810, "focus_rects": [{"x": 0, "y": 0, "h": 605, "w": 1080}, {"x": 162, "y": 0, "h": 810, "w": 810}, {"x": 212, "y": 0, "h": 810, "w": 711}, {"x": 365, "y": 0, "h": 810, "w": 405}, {"x": 0, "y": 0, "h": 810, "w": 1080}]}, "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 1080, "h": 810, "resize": "fit"}, "medium": {"w": 1080, "h": 810, "resize": "fit"}, "small": {"w": 680, "h": 510, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 1448348396251607042, "id_str": "1448348396251607042", "indices": [106, 129], "media_url": "http://pbs.twimg.com/media/FBmRMVWVcAImgZl.jpg", "media_url_https": "https://pbs.twimg.com/media/FBmRMVWVcAImgZl.jpg", "url": "https://t.co/NFolnTXUoY", "display_url": "pic.twitter.com/NFolnTXUoY", "expanded_url": "https://twitter.com/avroneel90/status/1448348406808674305/photo/1", "type": "photo", "original_info": {"width": 1080, "height": 1440, "focus_rects": [{"x": 0, "y": 454, "h": 605, "w": 1080}, {"x": 0, "y": 216, "h": 1080, "w": 1080}, {"x": 0, "y": 141, "h": 1231, "w": 1080}, {"x": 0, "y": 0, "h": 1440, "w": 720}, {"x": 0, "y": 0, "h": 1440, "w": 1080}]}, "sizes": {"large": {"w": 1080, "h": 1440, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 900, "h": 1200, "resize": "fit"}, "small": {"w": 510, "h": 680, "resize": "fit"}}, "media_key": "3_1448348396251607042", "ext_media_color": {"palette": [{"rgb": {"red": 158, "green": 152, "blue": 142}, "percentage": 40.32}, {"rgb": {"red": 65, "green": 56, "blue": 45}, "percentage": 22.27}, {"rgb": {"red": 159, "green": 134, "blue": 101}, "percentage": 8.25}, {"rgb": {"red": 88, "green": 36, "blue": 39}, "percentage": 8.25}, {"rgb": {"red": 180, "green": 194, "blue": 212}, "percentage": 4.86}]}, "ext_alt_text": null, "ext_media_availability": {"status": "available"}, "ext": {"mediaStats": {"r": "Missing", "ttl": -1}}}, {"id": 1448348400680771586, "id_str": "1448348400680771586", "indices": [106, 129], "media_url": "http://pbs.twimg.com/media/FBmRMl2VIAI6svZ.jpg", "media_url_https": "https://pbs.twimg.com/media/FBmRMl2VIAI6svZ.jpg", "url": "https://t.co/NFolnTXUoY", "display_url": "pic.twitter.com/NFolnTXUoY", "expanded_url": "https://twitter.com/avroneel90/status/1448348406808674305/photo/1", "type": "photo", "original_info": {"width": 1080, "height": 810, "focus_rects": [{"x": 0, "y": 157, "h": 605, "w": 1080}, {"x": 108, "y": 0, "h": 810, "w": 810}, {"x": 158, "y": 0, "h": 810, "w": 711}, {"x": 311, "y": 0, "h": 810, "w": 405}, {"x": 0, "y": 0, "h": 810, "w": 1080}]}, "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 1080, "h": 810, "resize": "fit"}, "large": {"w": 1080, "h": 810, "resize": "fit"}, "small": {"w": 680, "h": 510, "resize": "fit"}}, "media_key": "3_1448348400680771586", "ext_alt_text": null, "ext_media_availability": {"status": "available"}, "ext_media_color": {"palette": [{"rgb": {"red": 32, "green": 30, "blue": 29}, "percentage": 45.48}, {"rgb": {"red": 172, "green": 162, "blue": 152}, "percentage": 29.26}, {"rgb": {"red": 182, "green": 11, "blue": 28}, "percentage": 4.06}, {"rgb": {"red": 166, "green": 182, "blue": 198}, "percentage": 2.05}, {"rgb": {"red": 142, "green": 52, "blue": 52}, "percentage": 1.81}]}, "ext": {"mediaStats": {"r": "Missing", "ttl": -1}}}, {"id": 1448348404468183048, "id_str": "1448348404468183048", "indices": [106, 129], "media_url": "http://pbs.twimg.com/media/FBmRMz9UcAgLKjc.jpg", "media_url_https": "https://pbs.twimg.com/media/FBmRMz9UcAgLKjc.jpg", "url": "https://t.co/NFolnTXUoY", "display_url": "pic.twitter.com/NFolnTXUoY", "expanded_url": "https://twitter.com/avroneel90/status/1448348406808674305/photo/1", "type": "photo", "original_info": {"width": 1080, "height": 810, "focus_rects": [{"x": 0, "y": 0, "h": 605, "w": 1080}, {"x": 162, "y": 0, "h": 810, "w": 810}, {"x": 212, "y": 0, "h": 810, "w": 711}, {"x": 365, "y": 0, "h": 810, "w": 405}, {"x": 0, "y": 0, "h": 810, "w": 1080}]}, "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 1080, "h": 810, "resize": "fit"}, "medium": {"w": 1080, "h": 810, "resize": "fit"}, "small": {"w": 680, "h": 510, "resize": "fit"}}, "media_key": "3_1448348404468183048", "ext_alt_text": null, "ext_media_availability": {"status": "available"}, "ext_media_color": {"palette": [{"rgb": {"red": 172, "green": 169, "blue": 160}, "percentage": 55.56}, {"rgb": {"red": 63, "green": 45, "blue": 39}, "percentage": 20.23}, {"rgb": {"red": 141, "green": 113, "blue": 63}, "percentage": 5.4}, {"rgb": {"red": 173, "green": 185, "blue": 199}, "percentage": 2.48}, {"rgb": {"red": 86, "green": 87, "blue": 79}, "percentage": 2.35}]}, "ext": {"mediaStats": {"r": "Missing", "ttl": -1}}}]}, "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user_id": 1255871989690007554, "user_id_str": "1255871989690007554", "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 2315, "favorite_count": 3722, "reply_count": 183, "quote_count": 164, "conversation_id": 1448348406808674305, "conversation_id_str": "1448348406808674305", "favorited": false, "retweeted": false, "possibly_sensitive": false, "possibly_sensitive_editable": true, "lang": "en", "supplemental_language": null}}
{"object_type": "TweetRaw", "download_datetime": "2021-10-14T13:13:27.471135+02:00", "raw_value": {"created_at": "Wed Oct 13 23:38:33 +0000 2021", "id": 1448433004297158656, "id_str": "1448433004297158656", "full_text": "Sister of dead 14-year-old boy blasts AHS for labelling his death COVID-related\nhttps://t.co/CWjyyZiSi8\n#covid19 #ahs", "truncated": false, "display_text_range": [0, 117], "entities": {"hashtags": [{"text": "covid19", "indices": [104, 112]}, {"text": "ahs", "indices": [113, 117]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/CWjyyZiSi8", "expanded_url": "https://westernstandardonline.com/2021/10/sister-of-dead-14-year-old-boy-blasts-ahs-for-labelling-his-death-covid-related/", "display_url": "westernstandardonline.com/2021/10/sister\u2026", "indices": [80, 103]}]}, "source": "<a href=\"https://mobile.twitter.com\" rel=\"nofollow\">Twitter Web App</a>", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user_id": 1183158347266064384, "user_id_str": "1183158347266064384", "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 106, "favorite_count": 175, "reply_count": 8, "quote_count": 13, "conversation_id": 1448433004297158656, "conversation_id_str": "1448433004297158656", "favorited": false, "retweeted": false, "possibly_sensitive": false, "possibly_sensitive_editable": true, "card": {"name": "summary_large_image", "url": "https://t.co/CWjyyZiSi8", "card_type_url": "http://card-type-url-is-deprecated.invalid", "binding_values": {"vanity_url": {"type": "STRING", "string_value": "westernstandardonline.com", "scribe_key": "vanity_url"}, "domain": {"type": "STRING", "string_value": "westernstandardonline.com"}, "creator": {"type": "USER", "user_value": {"id_str": "1183158347266064384", "path": []}}, "site": {"type": "USER", "user_value": {"id_str": "1183158347266064384", "path": []}, "scribe_key": "publisher_id"}, "title": {"type": "STRING", "string_value": "WATCH: Sister of dead 14-year-old boy blasts AHS for labelling his death COVID-related"}, "thumbnail_image_small": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448430604622696452/vB5pUoeR?format=jpg&name=144x144", "width": 144, "height": 76, "alt": null}}, "thumbnail_image": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448430604622696452/vB5pUoeR?format=jpg&name=280x150", "width": 280, "height": 147, "alt": null}}, "thumbnail_image_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448430604622696452/vB5pUoeR?format=jpg&name=600x600", "width": 600, "height": 315, "alt": null}}, "thumbnail_image_x_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448430604622696452/vB5pUoeR?format=png&name=2048x2048_2_exp", "width": 1000, "height": 525, "alt": null}}, "thumbnail_image_original": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448430604622696452/vB5pUoeR?format=jpg&name=orig", "width": 1000, "height": 525, "alt": null}}, "summary_photo_image_small": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448430604622696452/vB5pUoeR?format=jpg&name=386x202", "width": 386, "height": 202, "alt": null}}, "summary_photo_image": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448430604622696452/vB5pUoeR?format=jpg&name=600x314", "width": 600, "height": 314, "alt": null}}, "summary_photo_image_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448430604622696452/vB5pUoeR?format=jpg&name=800x419", "width": 800, "height": 419, "alt": null}}, "summary_photo_image_x_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448430604622696452/vB5pUoeR?format=png&name=2048x2048_2_exp", "width": 1000, "height": 525, "alt": null}}, "summary_photo_image_original": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448430604622696452/vB5pUoeR?format=jpg&name=orig", "width": 1000, "height": 525, "alt": null}}, "photo_image_full_size_small": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448430604622696452/vB5pUoeR?format=jpg&name=386x202", "width": 386, "height": 202, "alt": null}}, "photo_image_full_size": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448430604622696452/vB5pUoeR?format=jpg&name=600x314", "width": 600, "height": 314, "alt": null}}, "photo_image_full_size_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448430604622696452/vB5pUoeR?format=jpg&name=800x419", "width": 800, "height": 419, "alt": null}}, "photo_image_full_size_x_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448430604622696452/vB5pUoeR?format=png&name=2048x2048_2_exp", "width": 1000, "height": 525, "alt": null}}, "photo_image_full_size_original": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448430604622696452/vB5pUoeR?format=jpg&name=orig", "width": 1000, "height": 525, "alt": null}}, "card_url": {"type": "STRING", "string_value": "https://t.co/CWjyyZiSi8", "scribe_key": "card_url"}}, "users": {"1183158347266064384": {"id": 1183158347266064384, "id_str": "1183158347266064384", "name": "Western Standard", "screen_name": "WSOnlineNews", "location": "Calgary, Alberta", "description": "The independent voice of the New West. info@westernstandardonline.com. (866) 479-WEST.", "url": "https://t.co/5YD1pkonwK", "entities": {"url": {"urls": [{"url": "https://t.co/5YD1pkonwK", "expanded_url": "http://westernstandardonline.com", "display_url": "westernstandardonline.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 7552, "fast_followers_count": 0, "normal_followers_count": 7552, "friends_count": 164, "listed_count": 43, "created_at": "Sat Oct 12 23:12:00 +0000 2019", "favourites_count": 173, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 5809, "media_count": 291, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "F5F8FA", "profile_background_image_url": null, "profile_background_image_url_https": null, "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1186413491017547776/M5kymPh0_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1186413491017547776/M5kymPh0_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1183158347266064384/1619981366", "profile_image_extensions_alt_text": null, "profile_image_extensions_media_availability": null, "profile_image_extensions_media_color": {"palette": [{"rgb": {"red": 255, "green": 255, "blue": 255}, "percentage": 76.28}, {"rgb": {"red": 0, "green": 0, "blue": 0}, "percentage": 12.62}, {"rgb": {"red": 242, "green": 36, "blue": 38}, "percentage": 8.72}, {"rgb": {"red": 246, "green": 175, "blue": 174}, "percentage": 0.87}, {"rgb": {"red": 229, "green": 88, "blue": 99}, "percentage": 0.57}]}, "profile_image_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_banner_extensions_alt_text": null, "profile_banner_extensions_media_availability": null, "profile_banner_extensions_media_color": {"palette": [{"rgb": {"red": 229, "green": 230, "blue": 234}, "percentage": 60.81}, {"rgb": {"red": 71, "green": 68, "blue": 63}, "percentage": 15.23}, {"rgb": {"red": 127, "green": 102, "blue": 78}, "percentage": 3.63}, {"rgb": {"red": 218, "green": 56, "blue": 71}, "percentage": 2.58}, {"rgb": {"red": 209, "green": 106, "blue": 119}, "percentage": 2.05}]}, "profile_banner_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": true, "default_profile_image": false, "pinned_tweet_ids": [1405646595144654848], "pinned_tweet_ids_str": ["1405646595144654848"], "has_custom_timelines": false, "can_dm": null, "following": null, "follow_request_sent": null, "notifications": null, "muting": null, "blocking": null, "blocked_by": null, "want_retweets": null, "advertiser_account_type": "promotable_user", "advertiser_account_service_levels": ["analytics"], "profile_interstitial_type": "", "business_profile_state": "none", "translator_type": "none", "withheld_in_countries": [], "followed_by": null, "ext": {"highlightedLabel": {"r": {"ok": {}}, "ttl": -1}}, "require_some_consent": false}}, "card_platform": {"platform": {"device": {"name": "Swift", "version": "12"}, "audience": {"name": "production", "bucket": null}}}}, "lang": "en", "supplemental_language": null}}
{"object_type": "TweetRaw", "download_datetime": "2021-10-14T13:13:27.471345+02:00", "raw_value": {"created_at": "Thu Oct 14 02:10:02 +0000 2021", "id": 1448471128129740800, "id_str": "1448471128129740800", "full_text": "Well, at least the sun is shining and #Lomas is on tonight. #COVID19 https://t.co/Wz1uWXxrzd", "truncated": false, "display_text_range": [0, 68], "entities": {"hashtags": [{"text": "Lomas", "indices": [38, 44]}, {"text": "COVID19", "indices": [60, 68]}], "symbols": [], "user_mentions": [], "urls": [], "media": [{"id": 1448471121322405889, "id_str": "1448471121322405889", "indices": [69, 92], "media_url": "http://pbs.twimg.com/media/FBoAz33VcAEZIje.jpg", "media_url_https": "https://pbs.twimg.com/media/FBoAz33VcAEZIje.jpg", "url": "https://t.co/Wz1uWXxrzd", "display_url": "pic.twitter.com/Wz1uWXxrzd", "expanded_url": "https://twitter.com/MitchMcCannNZ/status/1448471128129740800/photo/1", "type": "photo", "original_info": {"width": 1538, "height": 2048, "focus_rects": [{"x": 0, "y": 850, "h": 861, "w": 1538}, {"x": 0, "y": 510, "h": 1538, "w": 1538}, {"x": 0, "y": 295, "h": 1753, "w": 1538}, {"x": 153, "y": 0, "h": 2048, "w": 1024}, {"x": 0, "y": 0, "h": 2048, "w": 1538}]}, "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 901, "h": 1200, "resize": "fit"}, "large": {"w": 1538, "h": 2048, "resize": "fit"}, "small": {"w": 511, "h": 680, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 1448471121322405889, "id_str": "1448471121322405889", "indices": [69, 92], "media_url": "http://pbs.twimg.com/media/FBoAz33VcAEZIje.jpg", "media_url_https": "https://pbs.twimg.com/media/FBoAz33VcAEZIje.jpg", "url": "https://t.co/Wz1uWXxrzd", "display_url": "pic.twitter.com/Wz1uWXxrzd", "expanded_url": "https://twitter.com/MitchMcCannNZ/status/1448471128129740800/photo/1", "type": "photo", "original_info": {"width": 1538, "height": 2048, "focus_rects": [{"x": 0, "y": 850, "h": 861, "w": 1538}, {"x": 0, "y": 510, "h": 1538, "w": 1538}, {"x": 0, "y": 295, "h": 1753, "w": 1538}, {"x": 153, "y": 0, "h": 2048, "w": 1024}, {"x": 0, "y": 0, "h": 2048, "w": 1538}]}, "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 901, "h": 1200, "resize": "fit"}, "large": {"w": 1538, "h": 2048, "resize": "fit"}, "small": {"w": 511, "h": 680, "resize": "fit"}}, "media_key": "3_1448471121322405889", "ext_alt_text": null, "ext_media_color": {"palette": [{"rgb": {"red": 132, "green": 164, "blue": 222}, "percentage": 38.9}, {"rgb": {"red": 34, "green": 33, "blue": 40}, "percentage": 32.5}, {"rgb": {"red": 174, "green": 158, "blue": 143}, "percentage": 17.51}, {"rgb": {"red": 185, "green": 207, "blue": 231}, "percentage": 2.73}, {"rgb": {"red": 105, "green": 89, "blue": 73}, "percentage": 1.9}]}, "ext_media_availability": {"status": "available"}, "ext": {"mediaStats": {"r": "Missing", "ttl": -1}}}]}, "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user_id": 240130613, "user_id_str": "240130613", "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 17, "reply_count": 0, "quote_count": 0, "conversation_id": 1448471128129740800, "conversation_id_str": "1448471128129740800", "favorited": false, "retweeted": false, "possibly_sensitive": false, "possibly_sensitive_editable": true, "lang": "en", "supplemental_language": null}}
{"object_type": "TweetRaw", "download_datetime": "2021-10-14T13:13:27.471793+02:00", "raw_value": {"created_at": "Thu Oct 14 07:00:07 +0000 2021", "id": 1448544129168789505, "id_str": "1448544129168789505", "full_text": "#IndianArmy patrol arrived in our village today.  We did our first free medical checkup and gave information about how to avoid #COVID19.  I thank the #IndianArmy wholeheartedly. https://t.co/eFpnHIL6Jt", "truncated": false, "display_text_range": [0, 178], "entities": {"hashtags": [{"text": "IndianArmy", "indices": [0, 11]}, {"text": "COVID19", "indices": [128, 136]}, {"text": "IndianArmy", "indices": [151, 162]}], "symbols": [], "user_mentions": [], "urls": [], "media": [{"id": 1448544078094688258, "id_str": "1448544078094688258", "indices": [179, 202], "media_url": "http://pbs.twimg.com/media/FBpDKhBUYAIfpT2.jpg", "media_url_https": "https://pbs.twimg.com/media/FBpDKhBUYAIfpT2.jpg", "url": "https://t.co/eFpnHIL6Jt", "display_url": "pic.twitter.com/eFpnHIL6Jt", "expanded_url": "https://twitter.com/SaleemS99103534/status/1448544129168789505/photo/1", "type": "photo", "original_info": {"width": 960, "height": 1280, "focus_rects": [{"x": 0, "y": 339, "h": 538, "w": 960}, {"x": 0, "y": 128, "h": 960, "w": 960}, {"x": 0, "y": 61, "h": 1094, "w": 960}, {"x": 288, "y": 0, "h": 1280, "w": 640}, {"x": 0, "y": 0, "h": 1280, "w": 960}]}, "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 510, "h": 680, "resize": "fit"}, "large": {"w": 960, "h": 1280, "resize": "fit"}, "medium": {"w": 900, "h": 1200, "resize": "fit"}}}, {"id": 1448544090207895554, "id_str": "1448544090207895554", "indices": [179, 202], "media_url": "http://pbs.twimg.com/media/FBpDLOJVQAI17_a.jpg", "media_url_https": "https://pbs.twimg.com/media/FBpDLOJVQAI17_a.jpg", "url": "https://t.co/eFpnHIL6Jt", "display_url": "pic.twitter.com/eFpnHIL6Jt", "expanded_url": "https://twitter.com/SaleemS99103534/status/1448544129168789505/photo/1", "type": "photo", "original_info": {"width": 960, "height": 1280, "focus_rects": [{"x": 0, "y": 147, "h": 538, "w": 960}, {"x": 0, "y": 0, "h": 960, "w": 960}, {"x": 0, "y": 0, "h": 1094, "w": 960}, {"x": 224, "y": 0, "h": 1280, "w": 640}, {"x": 0, "y": 0, "h": 1280, "w": 960}]}, "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 900, "h": 1200, "resize": "fit"}, "large": {"w": 960, "h": 1280, "resize": "fit"}, "small": {"w": 510, "h": 680, "resize": "fit"}}}, {"id": 1448544104099377153, "id_str": "1448544104099377153", "indices": [179, 202], "media_url": "http://pbs.twimg.com/media/FBpDMB5UcAE0mI5.jpg", "media_url_https": "https://pbs.twimg.com/media/FBpDMB5UcAE0mI5.jpg", "url": "https://t.co/eFpnHIL6Jt", "display_url": "pic.twitter.com/eFpnHIL6Jt", "expanded_url": "https://twitter.com/SaleemS99103534/status/1448544129168789505/photo/1", "type": "photo", "original_info": {"width": 1200, "height": 1600, "focus_rects": [{"x": 0, "y": 424, "h": 672, "w": 1200}, {"x": 0, "y": 160, "h": 1200, "w": 1200}, {"x": 0, "y": 76, "h": 1368, "w": 1200}, {"x": 360, "y": 0, "h": 1600, "w": 800}, {"x": 0, "y": 0, "h": 1600, "w": 1200}]}, "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 900, "h": 1200, "resize": "fit"}, "large": {"w": 1200, "h": 1600, "resize": "fit"}, "small": {"w": 510, "h": 680, "resize": "fit"}}}, {"id": 1448544116405518341, "id_str": "1448544116405518341", "indices": [179, 202], "media_url": "http://pbs.twimg.com/media/FBpDMvvVQAUenX9.jpg", "media_url_https": "https://pbs.twimg.com/media/FBpDMvvVQAUenX9.jpg", "url": "https://t.co/eFpnHIL6Jt", "display_url": "pic.twitter.com/eFpnHIL6Jt", "expanded_url": "https://twitter.com/SaleemS99103534/status/1448544129168789505/photo/1", "type": "photo", "original_info": {"width": 960, "height": 1280, "focus_rects": [{"x": 0, "y": 19, "h": 538, "w": 960}, {"x": 0, "y": 0, "h": 960, "w": 960}, {"x": 0, "y": 0, "h": 1094, "w": 960}, {"x": 288, "y": 0, "h": 1280, "w": 640}, {"x": 0, "y": 0, "h": 1280, "w": 960}]}, "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 900, "h": 1200, "resize": "fit"}, "small": {"w": 510, "h": 680, "resize": "fit"}, "large": {"w": 960, "h": 1280, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 1448544078094688258, "id_str": "1448544078094688258", "indices": [179, 202], "media_url": "http://pbs.twimg.com/media/FBpDKhBUYAIfpT2.jpg", "media_url_https": "https://pbs.twimg.com/media/FBpDKhBUYAIfpT2.jpg", "url": "https://t.co/eFpnHIL6Jt", "display_url": "pic.twitter.com/eFpnHIL6Jt", "expanded_url": "https://twitter.com/SaleemS99103534/status/1448544129168789505/photo/1", "type": "photo", "original_info": {"width": 960, "height": 1280, "focus_rects": [{"x": 0, "y": 339, "h": 538, "w": 960}, {"x": 0, "y": 128, "h": 960, "w": 960}, {"x": 0, "y": 61, "h": 1094, "w": 960}, {"x": 288, "y": 0, "h": 1280, "w": 640}, {"x": 0, "y": 0, "h": 1280, "w": 960}]}, "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 510, "h": 680, "resize": "fit"}, "large": {"w": 960, "h": 1280, "resize": "fit"}, "medium": {"w": 900, "h": 1200, "resize": "fit"}}, "media_key": "3_1448544078094688258", "ext_alt_text": null, "ext_media_color": {"palette": [{"rgb": {"red": 70, "green": 69, "blue": 73}, "percentage": 35.63}, {"rgb": {"red": 198, "green": 195, "blue": 190}, "percentage": 23.25}, {"rgb": {"red": 67, "green": 69, "blue": 104}, "percentage": 7.4}, {"rgb": {"red": 136, "green": 142, "blue": 186}, "percentage": 4.13}, {"rgb": {"red": 200, "green": 198, "blue": 146}, "percentage": 1.87}]}, "ext_media_availability": {"status": "available"}, "ext": {"mediaStats": {"r": "Missing", "ttl": -1}}}, {"id": 1448544090207895554, "id_str": "1448544090207895554", "indices": [179, 202], "media_url": "http://pbs.twimg.com/media/FBpDLOJVQAI17_a.jpg", "media_url_https": "https://pbs.twimg.com/media/FBpDLOJVQAI17_a.jpg", "url": "https://t.co/eFpnHIL6Jt", "display_url": "pic.twitter.com/eFpnHIL6Jt", "expanded_url": "https://twitter.com/SaleemS99103534/status/1448544129168789505/photo/1", "type": "photo", "original_info": {"width": 960, "height": 1280, "focus_rects": [{"x": 0, "y": 147, "h": 538, "w": 960}, {"x": 0, "y": 0, "h": 960, "w": 960}, {"x": 0, "y": 0, "h": 1094, "w": 960}, {"x": 224, "y": 0, "h": 1280, "w": 640}, {"x": 0, "y": 0, "h": 1280, "w": 960}]}, "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 900, "h": 1200, "resize": "fit"}, "large": {"w": 960, "h": 1280, "resize": "fit"}, "small": {"w": 510, "h": 680, "resize": "fit"}}, "media_key": "3_1448544090207895554", "ext_media_color": {"palette": [{"rgb": {"red": 81, "green": 78, "blue": 77}, "percentage": 41.52}, {"rgb": {"red": 197, "green": 200, "blue": 203}, "percentage": 28.88}, {"rgb": {"red": 162, "green": 182, "blue": 217}, "percentage": 4.38}, {"rgb": {"red": 203, "green": 201, "blue": 174}, "percentage": 3.02}, {"rgb": {"red": 168, "green": 110, "blue": 111}, "percentage": 2.69}]}, "ext_alt_text": null, "ext_media_availability": {"status": "available"}, "ext": {"mediaStats": {"r": "Missing", "ttl": -1}}}, {"id": 1448544104099377153, "id_str": "1448544104099377153", "indices": [179, 202], "media_url": "http://pbs.twimg.com/media/FBpDMB5UcAE0mI5.jpg", "media_url_https": "https://pbs.twimg.com/media/FBpDMB5UcAE0mI5.jpg", "url": "https://t.co/eFpnHIL6Jt", "display_url": "pic.twitter.com/eFpnHIL6Jt", "expanded_url": "https://twitter.com/SaleemS99103534/status/1448544129168789505/photo/1", "type": "photo", "original_info": {"width": 1200, "height": 1600, "focus_rects": [{"x": 0, "y": 424, "h": 672, "w": 1200}, {"x": 0, "y": 160, "h": 1200, "w": 1200}, {"x": 0, "y": 76, "h": 1368, "w": 1200}, {"x": 360, "y": 0, "h": 1600, "w": 800}, {"x": 0, "y": 0, "h": 1600, "w": 1200}]}, "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 900, "h": 1200, "resize": "fit"}, "large": {"w": 1200, "h": 1600, "resize": "fit"}, "small": {"w": 510, "h": 680, "resize": "fit"}}, "media_key": "3_1448544104099377153", "ext_alt_text": null, "ext_media_availability": {"status": "available"}, "ext_media_color": {"palette": [{"rgb": {"red": 85, "green": 76, "blue": 82}, "percentage": 43.93}, {"rgb": {"red": 210, "green": 197, "blue": 186}, "percentage": 16.39}, {"rgb": {"red": 95, "green": 98, "blue": 89}, "percentage": 6.51}, {"rgb": {"red": 63, "green": 67, "blue": 99}, "percentage": 5.95}, {"rgb": {"red": 250, "green": 248, "blue": 199}, "percentage": 2.03}]}, "ext": {"mediaStats": {"r": "Missing", "ttl": -1}}}, {"id": 1448544116405518341, "id_str": "1448544116405518341", "indices": [179, 202], "media_url": "http://pbs.twimg.com/media/FBpDMvvVQAUenX9.jpg", "media_url_https": "https://pbs.twimg.com/media/FBpDMvvVQAUenX9.jpg", "url": "https://t.co/eFpnHIL6Jt", "display_url": "pic.twitter.com/eFpnHIL6Jt", "expanded_url": "https://twitter.com/SaleemS99103534/status/1448544129168789505/photo/1", "type": "photo", "original_info": {"width": 960, "height": 1280, "focus_rects": [{"x": 0, "y": 19, "h": 538, "w": 960}, {"x": 0, "y": 0, "h": 960, "w": 960}, {"x": 0, "y": 0, "h": 1094, "w": 960}, {"x": 288, "y": 0, "h": 1280, "w": 640}, {"x": 0, "y": 0, "h": 1280, "w": 960}]}, "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 900, "h": 1200, "resize": "fit"}, "small": {"w": 510, "h": 680, "resize": "fit"}, "large": {"w": 960, "h": 1280, "resize": "fit"}}, "media_key": "3_1448544116405518341", "ext_alt_text": null, "ext_media_availability": {"status": "available"}, "ext_media_color": {"palette": [{"rgb": {"red": 66, "green": 61, "blue": 64}, "percentage": 36.79}, {"rgb": {"red": 195, "green": 189, "blue": 182}, "percentage": 35.13}, {"rgb": {"red": 120, "green": 138, "blue": 173}, "percentage": 8.32}, {"rgb": {"red": 120, "green": 126, "blue": 108}, "percentage": 5.7}, {"rgb": {"red": 98, "green": 58, "blue": 53}, "percentage": 1.51}]}, "ext": {"mediaStats": {"r": "Missing", "ttl": -1}}}]}, "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user_id": 1436719439982960643, "user_id_str": "1436719439982960643", "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 24, "favorite_count": 26, "reply_count": 0, "quote_count": 0, "conversation_id": 1448544129168789505, "conversation_id_str": "1448544129168789505", "favorited": false, "retweeted": false, "possibly_sensitive": false, "possibly_sensitive_editable": true, "lang": "en", "supplemental_language": null}}
{"object_type": "TweetRaw", "download_datetime": "2021-10-14T13:13:27.471987+02:00", "raw_value": {"created_at": "Wed Oct 13 14:00:09 +0000 2021", "id": 1448287444923817984, "id_str": "1448287444923817984", "full_text": "FOI Request \u201chas Craig Tracey MP (my MP) been vaccinated ??  He does not have to respond !! Section 30 https://t.co/OW2UkxnBJk", "truncated": false, "display_text_range": [0, 102], "entities": {"hashtags": [], "symbols": [], "user_mentions": [], "urls": [], "media": [{"id": 1448287438657499141, "id_str": "1448287438657499141", "indices": [103, 126], "media_url": "http://pbs.twimg.com/media/FBlZwInXMAUyVlB.jpg", "media_url_https": "https://pbs.twimg.com/media/FBlZwInXMAUyVlB.jpg", "url": "https://t.co/OW2UkxnBJk", "display_url": "pic.twitter.com/OW2UkxnBJk", "expanded_url": "https://twitter.com/AnneMar45451941/status/1448287444923817984/photo/1", "type": "photo", "original_info": {"width": 1536, "height": 2048, "focus_rects": [{"x": 0, "y": 0, "h": 860, "w": 1536}, {"x": 0, "y": 0, "h": 1536, "w": 1536}, {"x": 0, "y": 0, "h": 1751, "w": 1536}, {"x": 256, "y": 0, "h": 2048, "w": 1024}, {"x": 0, "y": 0, "h": 2048, "w": 1536}]}, "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 510, "h": 680, "resize": "fit"}, "large": {"w": 1536, "h": 2048, "resize": "fit"}, "medium": {"w": 900, "h": 1200, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 1448287438657499141, "id_str": "1448287438657499141", "indices": [103, 126], "media_url": "http://pbs.twimg.com/media/FBlZwInXMAUyVlB.jpg", "media_url_https": "https://pbs.twimg.com/media/FBlZwInXMAUyVlB.jpg", "url": "https://t.co/OW2UkxnBJk", "display_url": "pic.twitter.com/OW2UkxnBJk", "expanded_url": "https://twitter.com/AnneMar45451941/status/1448287444923817984/photo/1", "type": "photo", "original_info": {"width": 1536, "height": 2048, "focus_rects": [{"x": 0, "y": 0, "h": 860, "w": 1536}, {"x": 0, "y": 0, "h": 1536, "w": 1536}, {"x": 0, "y": 0, "h": 1751, "w": 1536}, {"x": 256, "y": 0, "h": 2048, "w": 1024}, {"x": 0, "y": 0, "h": 2048, "w": 1536}]}, "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 510, "h": 680, "resize": "fit"}, "large": {"w": 1536, "h": 2048, "resize": "fit"}, "medium": {"w": 900, "h": 1200, "resize": "fit"}}, "media_key": "3_1448287438657499141", "ext_media_color": {"palette": [{"rgb": {"red": 152, "green": 140, "blue": 122}, "percentage": 93.31}, {"rgb": {"red": 25, "green": 18, "blue": 11}, "percentage": 6.43}, {"rgb": {"red": 199, "green": 183, "blue": 164}, "percentage": 0.2}]}, "ext_alt_text": null, "ext_media_availability": {"status": "available"}, "ext": {"mediaStats": {"r": "Missing", "ttl": -1}}}]}, "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user_id": 4656772816, "user_id_str": "4656772816", "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 283, "favorite_count": 489, "reply_count": 83, "quote_count": 61, "conversation_id": 1448287444923817984, "conversation_id_str": "1448287444923817984", "favorited": false, "retweeted": false, "possibly_sensitive": false, "possibly_sensitive_editable": true, "lang": "en", "supplemental_language": null, "self_thread": {"id": 1448287444923817984, "id_str": "1448287444923817984"}}}
{"object_type": "TweetRaw", "download_datetime": "2021-10-14T13:13:27.472184+02:00", "raw_value": {"created_at": "Thu Oct 14 10:08:17 +0000 2021", "id": 1448591483657916423, "id_str": "1448591483657916423", "full_text": "New #COVID19 scam you might want to  block this number\n\nWebsite looks legit but after entering all .@BorisJohnson details it asked me for money ... https://t.co/x8Usu6VLju", "truncated": false, "display_text_range": [0, 147], "entities": {"hashtags": [{"text": "COVID19", "indices": [4, 12]}], "symbols": [], "user_mentions": [{"screen_name": "BorisJohnson", "name": "Boris Johnson", "id": 3131144855, "id_str": "3131144855", "indices": [100, 113]}], "urls": [], "media": [{"id": 1448591481523085317, "id_str": "1448591481523085317", "indices": [148, 171], "media_url": "http://pbs.twimg.com/media/FBpuRwjXIAUnFbV.jpg", "media_url_https": "https://pbs.twimg.com/media/FBpuRwjXIAUnFbV.jpg", "url": "https://t.co/x8Usu6VLju", "display_url": "pic.twitter.com/x8Usu6VLju", "expanded_url": "https://twitter.com/sharonpentay/status/1448591483657916423/photo/1", "type": "photo", "original_info": {"width": 922, "height": 2048, "focus_rects": [{"x": 0, "y": 0, "h": 516, "w": 922}, {"x": 0, "y": 0, "h": 922, "w": 922}, {"x": 0, "y": 0, "h": 1051, "w": 922}, {"x": 0, "y": 0, "h": 1844, "w": 922}, {"x": 0, "y": 0, "h": 2048, "w": 922}]}, "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 306, "h": 680, "resize": "fit"}, "large": {"w": 922, "h": 2048, "resize": "fit"}, "medium": {"w": 540, "h": 1200, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 1448591481523085317, "id_str": "1448591481523085317", "indices": [148, 171], "media_url": "http://pbs.twimg.com/media/FBpuRwjXIAUnFbV.jpg", "media_url_https": "https://pbs.twimg.com/media/FBpuRwjXIAUnFbV.jpg", "url": "https://t.co/x8Usu6VLju", "display_url": "pic.twitter.com/x8Usu6VLju", "expanded_url": "https://twitter.com/sharonpentay/status/1448591483657916423/photo/1", "type": "photo", "original_info": {"width": 922, "height": 2048, "focus_rects": [{"x": 0, "y": 0, "h": 516, "w": 922}, {"x": 0, "y": 0, "h": 922, "w": 922}, {"x": 0, "y": 0, "h": 1051, "w": 922}, {"x": 0, "y": 0, "h": 1844, "w": 922}, {"x": 0, "y": 0, "h": 2048, "w": 922}]}, "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 306, "h": 680, "resize": "fit"}, "large": {"w": 922, "h": 2048, "resize": "fit"}, "medium": {"w": 540, "h": 1200, "resize": "fit"}}, "media_key": "3_1448591481523085317", "ext_media_color": {"palette": [{"rgb": {"red": 252, "green": 252, "blue": 252}, "percentage": 99.1}, {"rgb": {"red": 135, "green": 135, "blue": 135}, "percentage": 0.54}, {"rgb": {"red": 230, "green": 156, "blue": 199}, "percentage": 0.22}, {"rgb": {"red": 147, "green": 160, "blue": 208}, "percentage": 0.15}]}, "ext_alt_text": null, "ext_media_availability": {"status": "available"}, "ext": {"mediaStats": {"r": "Missing", "ttl": -1}}}]}, "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user_id": 199793632, "user_id_str": "199793632", "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "reply_count": 0, "quote_count": 0, "conversation_id": 1448591483657916423, "conversation_id_str": "1448591483657916423", "favorited": false, "retweeted": false, "possibly_sensitive": false, "possibly_sensitive_editable": true, "lang": "en", "supplemental_language": null}}
{"object_type": "TweetRaw", "download_datetime": "2021-10-14T13:13:27.472488+02:00", "raw_value": {"created_at": "Thu Oct 14 01:33:09 +0000 2021", "id": 1448461842850795520, "id_str": "1448461842850795520", "full_text": "Health Secretary Francisco Duque said he was not consulted when officials made the decision to allow the entry of fully vaccinated travelers from \"green countries\" without facility quarantine. #COVID19 https://t.co/sD7g4cAqb0", "truncated": false, "display_text_range": [0, 225], "entities": {"hashtags": [{"text": "COVID19", "indices": [193, 201]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/sD7g4cAqb0", "expanded_url": "https://news.abs-cbn.com/news/10/14/21/duque-questions-no-isolation-for-fully-vaxxed-travelers", "display_url": "news.abs-cbn.com/news/10/14/21/\u2026", "indices": [202, 225]}]}, "source": "<a href=\"https://about.twitter.com/products/tweetdeck\" rel=\"nofollow\">TweetDeck</a>", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user_id": 15872418, "user_id_str": "15872418", "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 9, "favorite_count": 74, "reply_count": 71, "quote_count": 70, "conversation_id": 1448461842850795520, "conversation_id_str": "1448461842850795520", "favorited": false, "retweeted": false, "possibly_sensitive": false, "possibly_sensitive_editable": true, "card": {"name": "summary_large_image", "url": "https://t.co/sD7g4cAqb0", "card_type_url": "http://card-type-url-is-deprecated.invalid", "binding_values": {"vanity_url": {"type": "STRING", "string_value": "news.abs-cbn.com", "scribe_key": "vanity_url"}, "amp": {"type": "BOOLEAN", "boolean_value": true}, "domain": {"type": "STRING", "string_value": "news.abs-cbn.com"}, "site": {"type": "USER", "user_value": {"id_str": "15872418", "path": []}, "scribe_key": "publisher_id"}, "title": {"type": "STRING", "string_value": "Duque questions no isolation for fully vaxxed travelers"}, "summary_photo_image_alt_text": {"type": "STRING", "string_value": "Duque questions no isolation for fully vaxxed travelers"}, "photo_image_full_size_alt_text": {"type": "STRING", "string_value": "Duque questions no isolation for fully vaxxed travelers"}, "description": {"type": "STRING", "string_value": "Health Secretary Francisco Duque was not consulted when officials decided to allow the entry of fully vaccinated travelers from \"green countries\" without quarantine."}, "thumbnail_image_small": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448461843492573185/6sMESKWi?format=jpg&name=100x100", "width": 100, "height": 67, "alt": null}}, "thumbnail_image": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448461843492573185/6sMESKWi?format=jpg&name=280x150", "width": 225, "height": 150, "alt": null}}, "thumbnail_image_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448461843492573185/6sMESKWi?format=jpg&name=800x320_1", "width": 480, "height": 320, "alt": null}}, "thumbnail_image_x_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448461843492573185/6sMESKWi?format=png&name=2048x2048_2_exp", "width": 950, "height": 633, "alt": null}}, "thumbnail_image_original": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448461843492573185/6sMESKWi?format=jpg&name=orig", "width": 950, "height": 633, "alt": null}}, "summary_photo_image_small": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448461843492573185/6sMESKWi?format=jpg&name=386x202", "width": 386, "height": 202, "alt": null}}, "summary_photo_image": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448461843492573185/6sMESKWi?format=jpg&name=600x314", "width": 600, "height": 314, "alt": null}}, "summary_photo_image_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448461843492573185/6sMESKWi?format=jpg&name=800x419", "width": 800, "height": 419, "alt": null}}, "summary_photo_image_x_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448461843492573185/6sMESKWi?format=png&name=2048x2048_2_exp", "width": 950, "height": 633, "alt": null}}, "summary_photo_image_original": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448461843492573185/6sMESKWi?format=jpg&name=orig", "width": 950, "height": 633, "alt": null}}, "photo_image_full_size_small": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448461843492573185/6sMESKWi?format=jpg&name=386x202", "width": 386, "height": 202, "alt": null}}, "photo_image_full_size": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448461843492573185/6sMESKWi?format=jpg&name=600x314", "width": 600, "height": 314, "alt": null}}, "photo_image_full_size_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448461843492573185/6sMESKWi?format=jpg&name=800x419", "width": 800, "height": 419, "alt": null}}, "photo_image_full_size_x_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448461843492573185/6sMESKWi?format=png&name=2048x2048_2_exp", "width": 950, "height": 633, "alt": null}}, "photo_image_full_size_original": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448461843492573185/6sMESKWi?format=jpg&name=orig", "width": 950, "height": 633, "alt": null}}, "card_url": {"type": "STRING", "string_value": "https://t.co/sD7g4cAqb0", "scribe_key": "card_url"}}, "users": {"15872418": {"id": 15872418, "id_str": "15872418", "name": "ABS-CBN News", "screen_name": "ABSCBNNews", "location": "Manila, Philippines", "description": "Stories, video, and multimedia for Filipinos worldwide, from ABS-CBN News and Current Affairs, the Philippines' most trusted news organization.", "url": "https://t.co/op1sHJnd8K", "entities": {"url": {"urls": [{"url": "https://t.co/op1sHJnd8K", "expanded_url": "http://news.abs-cbn.com", "display_url": "news.abs-cbn.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 7664066, "fast_followers_count": 0, "normal_followers_count": 7664066, "friends_count": 1063, "listed_count": 8038, "created_at": "Sat Aug 16 10:09:33 +0000 2008", "favourites_count": 1175, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": true, "statuses_count": 925761, "media_count": 202393, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1414904727674920961/aRgHKXj5_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1414904727674920961/aRgHKXj5_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15872418/1620199232", "profile_image_extensions_alt_text": null, "profile_image_extensions_media_availability": null, "profile_image_extensions_media_color": {"palette": [{"rgb": {"red": 254, "green": 254, "blue": 254}, "percentage": 49.3}, {"rgb": {"red": 204, "green": 23, "blue": 42}, "percentage": 19.2}, {"rgb": {"red": 3, "green": 141, "blue": 54}, "percentage": 13.9}, {"rgb": {"red": 2, "green": 69, "blue": 142}, "percentage": 6.36}, {"rgb": {"red": 36, "green": 30, "blue": 32}, "percentage": 3.12}]}, "profile_image_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_banner_extensions_alt_text": null, "profile_banner_extensions_media_availability": null, "profile_banner_extensions_media_color": {"palette": [{"rgb": {"red": 250, "green": 251, "blue": 254}, "percentage": 89.55}, {"rgb": {"red": 48, "green": 122, "blue": 181}, "percentage": 3.89}, {"rgb": {"red": 236, "green": 122, "blue": 129}, "percentage": 1.8}, {"rgb": {"red": 164, "green": 213, "blue": 184}, "percentage": 1.69}, {"rgb": {"red": 99, "green": 180, "blue": 135}, "percentage": 0.71}]}, "profile_banner_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_link_color": "006BB3", "profile_sidebar_border_color": "FFFFFF", "profile_sidebar_fill_color": "CACACE", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": false, "default_profile_image": false, "pinned_tweet_ids": [], "pinned_tweet_ids_str": [], "has_custom_timelines": true, "can_dm": null, "following": null, "follow_request_sent": null, "notifications": null, "muting": null, "blocking": null, "blocked_by": null, "want_retweets": null, "advertiser_account_type": "promotable_user", "advertiser_account_service_levels": ["mms", "media_studio"], "profile_interstitial_type": "", "business_profile_state": "none", "translator_type": "regular", "withheld_in_countries": [], "followed_by": null, "ext": {"highlightedLabel": {"r": {"ok": {}}, "ttl": -1}}, "require_some_consent": false}}, "card_platform": {"platform": {"device": {"name": "Swift", "version": "12"}, "audience": {"name": "production", "bucket": null}}}}, "lang": "en", "supplemental_language": null}}
{"object_type": "TweetRaw", "download_datetime": "2021-10-14T13:13:27.473316+02:00", "raw_value": {"created_at": "Wed Oct 13 23:16:10 +0000 2021", "id": 1448427369639956484, "id_str": "1448427369639956484", "full_text": "Oh dear @KonicaMinoltaUS it seems your \u201ctop US Rep\u201d and fake vaccine card holder @blhuff79 is continuing to share internal company documents and looking to help others circumvent your company #COVID19 vaccine mandate. https://t.co/eG2rogH9X4", "truncated": false, "display_text_range": [0, 217], "entities": {"hashtags": [{"text": "COVID19", "indices": [192, 200]}], "symbols": [], "user_mentions": [{"screen_name": "KonicaMinoltaUS", "name": "Konica Minolta US", "id": 48703581, "id_str": "48703581", "indices": [8, 24]}, {"screen_name": "blhuff79", "name": "Brein Huffman", "id": 64311124, "id_str": "64311124", "indices": [81, 90]}], "urls": [], "media": [{"id": 1448427365214953473, "id_str": "1448427365214953473", "indices": [218, 241], "media_url": "http://pbs.twimg.com/media/FBnZA7qXoAE9eQ3.jpg", "media_url_https": "https://pbs.twimg.com/media/FBnZA7qXoAE9eQ3.jpg", "url": "https://t.co/eG2rogH9X4", "display_url": "pic.twitter.com/eG2rogH9X4", "expanded_url": "https://twitter.com/georgehawk26/status/1448427369639956484/photo/1", "type": "photo", "original_info": {"width": 1230, "height": 2048, "focus_rects": [{"x": 0, "y": 0, "h": 689, "w": 1230}, {"x": 0, "y": 0, "h": 1230, "w": 1230}, {"x": 0, "y": 0, "h": 1402, "w": 1230}, {"x": 0, "y": 0, "h": 2048, "w": 1024}, {"x": 0, "y": 0, "h": 2048, "w": 1230}]}, "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 408, "h": 680, "resize": "fit"}, "large": {"w": 1230, "h": 2048, "resize": "fit"}, "medium": {"w": 721, "h": 1200, "resize": "fit"}}}, {"id": 1448427365214965766, "id_str": "1448427365214965766", "indices": [218, 241], "media_url": "http://pbs.twimg.com/media/FBnZA7qX0AYzGJp.jpg", "media_url_https": "https://pbs.twimg.com/media/FBnZA7qX0AYzGJp.jpg", "url": "https://t.co/eG2rogH9X4", "display_url": "pic.twitter.com/eG2rogH9X4", "expanded_url": "https://twitter.com/georgehawk26/status/1448427369639956484/photo/1", "type": "photo", "original_info": {"width": 1125, "height": 1933, "focus_rects": [{"x": 0, "y": 313, "h": 630, "w": 1125}, {"x": 0, "y": 66, "h": 1125, "w": 1125}, {"x": 0, "y": 0, "h": 1283, "w": 1125}, {"x": 0, "y": 0, "h": 1933, "w": 967}, {"x": 0, "y": 0, "h": 1933, "w": 1125}]}, "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 396, "h": 680, "resize": "fit"}, "large": {"w": 1125, "h": 1933, "resize": "fit"}, "medium": {"w": 698, "h": 1200, "resize": "fit"}}}, {"id": 1448427365214863363, "id_str": "1448427365214863363", "indices": [218, 241], "media_url": "http://pbs.twimg.com/media/FBnZA7qWQAM3PSx.jpg", "media_url_https": "https://pbs.twimg.com/media/FBnZA7qWQAM3PSx.jpg", "url": "https://t.co/eG2rogH9X4", "display_url": "pic.twitter.com/eG2rogH9X4", "expanded_url": "https://twitter.com/georgehawk26/status/1448427369639956484/photo/1", "type": "photo", "original_info": {"width": 1125, "height": 1846, "focus_rects": [{"x": 0, "y": 746, "h": 630, "w": 1125}, {"x": 0, "y": 499, "h": 1125, "w": 1125}, {"x": 0, "y": 420, "h": 1283, "w": 1125}, {"x": 0, "y": 0, "h": 1846, "w": 923}, {"x": 0, "y": 0, "h": 1846, "w": 1125}]}, "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 414, "h": 680, "resize": "fit"}, "medium": {"w": 731, "h": 1200, "resize": "fit"}, "large": {"w": 1125, "h": 1846, "resize": "fit"}}}, {"id": 1448427365214867460, "id_str": "1448427365214867460", "indices": [218, 241], "media_url": "http://pbs.twimg.com/media/FBnZA7qWUAQdkNy.jpg", "media_url_https": "https://pbs.twimg.com/media/FBnZA7qWUAQdkNy.jpg", "url": "https://t.co/eG2rogH9X4", "display_url": "pic.twitter.com/eG2rogH9X4", "expanded_url": "https://twitter.com/georgehawk26/status/1448427369639956484/photo/1", "type": "photo", "original_info": {"width": 1113, "height": 1891, "focus_rects": [{"x": 0, "y": 0, "h": 623, "w": 1113}, {"x": 0, "y": 0, "h": 1113, "w": 1113}, {"x": 0, "y": 0, "h": 1269, "w": 1113}, {"x": 0, "y": 0, "h": 1891, "w": 946}, {"x": 0, "y": 0, "h": 1891, "w": 1113}]}, "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 400, "h": 680, "resize": "fit"}, "large": {"w": 1113, "h": 1891, "resize": "fit"}, "medium": {"w": 706, "h": 1200, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 1448427365214953473, "id_str": "1448427365214953473", "indices": [218, 241], "media_url": "http://pbs.twimg.com/media/FBnZA7qXoAE9eQ3.jpg", "media_url_https": "https://pbs.twimg.com/media/FBnZA7qXoAE9eQ3.jpg", "url": "https://t.co/eG2rogH9X4", "display_url": "pic.twitter.com/eG2rogH9X4", "expanded_url": "https://twitter.com/georgehawk26/status/1448427369639956484/photo/1", "type": "photo", "original_info": {"width": 1230, "height": 2048, "focus_rects": [{"x": 0, "y": 0, "h": 689, "w": 1230}, {"x": 0, "y": 0, "h": 1230, "w": 1230}, {"x": 0, "y": 0, "h": 1402, "w": 1230}, {"x": 0, "y": 0, "h": 2048, "w": 1024}, {"x": 0, "y": 0, "h": 2048, "w": 1230}]}, "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 408, "h": 680, "resize": "fit"}, "large": {"w": 1230, "h": 2048, "resize": "fit"}, "medium": {"w": 721, "h": 1200, "resize": "fit"}}, "media_key": "3_1448427365214953473", "ext_media_color": {"palette": [{"rgb": {"red": 255, "green": 255, "blue": 255}, "percentage": 98.59}, {"rgb": {"red": 137, "green": 138, "blue": 141}, "percentage": 0.5}, {"rgb": {"red": 145, "green": 170, "blue": 210}, "percentage": 0.43}, {"rgb": {"red": 236, "green": 183, "blue": 185}, "percentage": 0.2}, {"rgb": {"red": 142, "green": 222, "blue": 241}, "percentage": 0.19}]}, "ext_alt_text": null, "ext_media_availability": {"status": "available"}, "ext": {"mediaStats": {"r": "Missing", "ttl": -1}}}, {"id": 1448427365214965766, "id_str": "1448427365214965766", "indices": [218, 241], "media_url": "http://pbs.twimg.com/media/FBnZA7qX0AYzGJp.jpg", "media_url_https": "https://pbs.twimg.com/media/FBnZA7qX0AYzGJp.jpg", "url": "https://t.co/eG2rogH9X4", "display_url": "pic.twitter.com/eG2rogH9X4", "expanded_url": "https://twitter.com/georgehawk26/status/1448427369639956484/photo/1", "type": "photo", "original_info": {"width": 1125, "height": 1933, "focus_rects": [{"x": 0, "y": 313, "h": 630, "w": 1125}, {"x": 0, "y": 66, "h": 1125, "w": 1125}, {"x": 0, "y": 0, "h": 1283, "w": 1125}, {"x": 0, "y": 0, "h": 1933, "w": 967}, {"x": 0, "y": 0, "h": 1933, "w": 1125}]}, "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 396, "h": 680, "resize": "fit"}, "large": {"w": 1125, "h": 1933, "resize": "fit"}, "medium": {"w": 698, "h": 1200, "resize": "fit"}}, "media_key": "3_1448427365214965766", "ext_alt_text": null, "ext_media_availability": {"status": "available"}, "ext_media_color": {"palette": [{"rgb": {"red": 255, "green": 255, "blue": 255}, "percentage": 94.71}, {"rgb": {"red": 137, "green": 137, "blue": 137}, "percentage": 2.22}, {"rgb": {"red": 254, "green": 251, "blue": 113}, "percentage": 2.14}, {"rgb": {"red": 255, "green": 253, "blue": 183}, "percentage": 0.54}, {"rgb": {"red": 203, "green": 211, "blue": 224}, "percentage": 0.2}]}, "ext": {"mediaStats": {"r": "Missing", "ttl": -1}}}, {"id": 1448427365214863363, "id_str": "1448427365214863363", "indices": [218, 241], "media_url": "http://pbs.twimg.com/media/FBnZA7qWQAM3PSx.jpg", "media_url_https": "https://pbs.twimg.com/media/FBnZA7qWQAM3PSx.jpg", "url": "https://t.co/eG2rogH9X4", "display_url": "pic.twitter.com/eG2rogH9X4", "expanded_url": "https://twitter.com/georgehawk26/status/1448427369639956484/photo/1", "type": "photo", "original_info": {"width": 1125, "height": 1846, "focus_rects": [{"x": 0, "y": 746, "h": 630, "w": 1125}, {"x": 0, "y": 499, "h": 1125, "w": 1125}, {"x": 0, "y": 420, "h": 1283, "w": 1125}, {"x": 0, "y": 0, "h": 1846, "w": 923}, {"x": 0, "y": 0, "h": 1846, "w": 1125}]}, "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 414, "h": 680, "resize": "fit"}, "medium": {"w": 731, "h": 1200, "resize": "fit"}, "large": {"w": 1125, "h": 1846, "resize": "fit"}}, "media_key": "3_1448427365214863363", "ext_alt_text": null, "ext_media_availability": {"status": "available"}, "ext_media_color": {"palette": [{"rgb": {"red": 241, "green": 241, "blue": 241}, "percentage": 92.06}, {"rgb": {"red": 138, "green": 138, "blue": 138}, "percentage": 3.88}, {"rgb": {"red": 254, "green": 251, "blue": 112}, "percentage": 2.95}, {"rgb": {"red": 254, "green": 253, "blue": 187}, "percentage": 0.52}, {"rgb": {"red": 35, "green": 35, "blue": 34}, "percentage": 0.13}]}, "ext": {"mediaStats": {"r": "Missing", "ttl": -1}}}, {"id": 1448427365214867460, "id_str": "1448427365214867460", "indices": [218, 241], "media_url": "http://pbs.twimg.com/media/FBnZA7qWUAQdkNy.jpg", "media_url_https": "https://pbs.twimg.com/media/FBnZA7qWUAQdkNy.jpg", "url": "https://t.co/eG2rogH9X4", "display_url": "pic.twitter.com/eG2rogH9X4", "expanded_url": "https://twitter.com/georgehawk26/status/1448427369639956484/photo/1", "type": "photo", "original_info": {"width": 1113, "height": 1891, "focus_rects": [{"x": 0, "y": 0, "h": 623, "w": 1113}, {"x": 0, "y": 0, "h": 1113, "w": 1113}, {"x": 0, "y": 0, "h": 1269, "w": 1113}, {"x": 0, "y": 0, "h": 1891, "w": 946}, {"x": 0, "y": 0, "h": 1891, "w": 1113}]}, "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 400, "h": 680, "resize": "fit"}, "large": {"w": 1113, "h": 1891, "resize": "fit"}, "medium": {"w": 706, "h": 1200, "resize": "fit"}}, "media_key": "3_1448427365214867460", "ext_media_color": {"palette": [{"rgb": {"red": 241, "green": 241, "blue": 241}, "percentage": 79.03}, {"rgb": {"red": 254, "green": 251, "blue": 111}, "percentage": 4.96}, {"rgb": {"red": 45, "green": 48, "blue": 60}, "percentage": 2.84}, {"rgb": {"red": 144, "green": 199, "blue": 198}, "percentage": 2.15}, {"rgb": {"red": 254, "green": 253, "blue": 187}, "percentage": 0.85}]}, "ext_alt_text": null, "ext_media_availability": {"status": "available"}, "ext": {"mediaStats": {"r": "Missing", "ttl": -1}}}]}, "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user_id": 1441495817580318720, "user_id_str": "1441495817580318720", "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 1, "favorite_count": 1, "reply_count": 2, "quote_count": 0, "conversation_id": 1448427369639956484, "conversation_id_str": "1448427369639956484", "favorited": false, "retweeted": false, "possibly_sensitive": false, "possibly_sensitive_editable": true, "lang": "en", "supplemental_language": null, "self_thread": {"id": 1448427369639956484, "id_str": "1448427369639956484"}}}
{"object_type": "TweetRaw", "download_datetime": "2021-10-14T13:13:27.473428+02:00", "raw_value": {"created_at": "Thu Oct 14 03:51:47 +0000 2021", "id": 1448496732312989698, "id_str": "1448496732312989698", "full_text": "What is the penalty for someone who wilfully spreads a potentially-fatal virus? \ud83e\udd14#COVID19 #MurdochRiots", "truncated": false, "display_text_range": [0, 103], "entities": {"hashtags": [{"text": "COVID19", "indices": [81, 89]}, {"text": "MurdochRiots", "indices": [90, 103]}], "symbols": [], "user_mentions": [], "urls": []}, "source": "<a href=\"https://mobile.twitter.com\" rel=\"nofollow\">Twitter Web App</a>", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user_id": 150466727, "user_id_str": "150466727", "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 94, "favorite_count": 377, "reply_count": 53, "quote_count": 7, "conversation_id": 1448496732312989698, "conversation_id_str": "1448496732312989698", "favorited": false, "retweeted": false, "lang": "en", "supplemental_language": null}}
{"object_type": "TweetRaw", "download_datetime": "2021-10-14T13:13:27.473549+02:00", "raw_value": {"created_at": "Thu Oct 14 09:42:04 +0000 2021", "id": 1448584883429732353, "id_str": "1448584883429732353", "full_text": "@CortesSteve @joerogan @drsanjaygupta In India, Ivermectin was prescribed for treatment of #COVID19.\n\n In fact, I have also taken it. I agree with @joerogan that #cnn was lying.", "truncated": false, "display_text_range": [38, 177], "entities": {"hashtags": [{"text": "COVID19", "indices": [91, 99]}, {"text": "cnn", "indices": [162, 166]}], "symbols": [], "user_mentions": [{"screen_name": "CortesSteve", "name": "Steve Cortes", "id": 229141520, "id_str": "229141520", "indices": [0, 12]}, {"screen_name": "joerogan", "name": "Joe Rogan", "id": 18208354, "id_str": "18208354", "indices": [13, 22]}, {"screen_name": "drsanjaygupta", "name": "Dr. Sanjay Gupta", "id": 18170896, "id_str": "18170896", "indices": [23, 37]}, {"screen_name": "joerogan", "name": "Joe Rogan", "id": 18208354, "id_str": "18208354", "indices": [147, 156]}], "urls": []}, "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "in_reply_to_status_id": 1448489466390253575, "in_reply_to_status_id_str": "1448489466390253575", "in_reply_to_user_id": 229141520, "in_reply_to_user_id_str": "229141520", "in_reply_to_screen_name": "CortesSteve", "user_id": 728206333485285377, "user_id_str": "728206333485285377", "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 4, "reply_count": 0, "quote_count": 0, "conversation_id": 1448489466390253575, "conversation_id_str": "1448489466390253575", "favorited": false, "retweeted": false, "lang": "en", "supplemental_language": null}}
{"object_type": "TweetRaw", "download_datetime": "2021-10-14T13:13:27.473646+02:00", "raw_value": {"created_at": "Wed Oct 13 22:46:05 +0000 2021", "id": 1448419799965450240, "id_str": "1448419799965450240", "full_text": "2297.... and 11 lost \ud83d\ude22...how is that possible? We have worked so hard and sacrificed so much. I am a bit devastated I must say #COVID19 #COVID19Vic", "truncated": false, "display_text_range": [0, 147], "entities": {"hashtags": [{"text": "COVID19", "indices": [127, 135]}, {"text": "COVID19Vic", "indices": [136, 147]}], "symbols": [], "user_mentions": [], "urls": []}, "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user_id": 107223068, "user_id_str": "107223068", "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 17, "favorite_count": 128, "reply_count": 28, "quote_count": 3, "conversation_id": 1448419799965450240, "conversation_id_str": "1448419799965450240", "favorited": false, "retweeted": false, "lang": "en", "supplemental_language": null}}
{"object_type": "TweetRaw", "download_datetime": "2021-10-14T13:13:27.473739+02:00", "raw_value": {"created_at": "Thu Oct 14 10:29:56 +0000 2021", "id": 1448596929919729664, "id_str": "1448596929919729664", "full_text": "Makes you think though; #COVID19 patient zero could still be out there, walking about, with no idea what they did.", "truncated": false, "display_text_range": [0, 114], "entities": {"hashtags": [{"text": "COVID19", "indices": [24, 32]}], "symbols": [], "user_mentions": [], "urls": []}, "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "in_reply_to_status_id": 1448596203327868933, "in_reply_to_status_id_str": "1448596203327868933", "in_reply_to_user_id": 1442620217339912197, "in_reply_to_user_id_str": "1442620217339912197", "in_reply_to_screen_name": "honestblur", "user_id": 1442620217339912197, "user_id_str": "1442620217339912197", "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "reply_count": 0, "quote_count": 0, "conversation_id": 1448596203327868933, "conversation_id_str": "1448596203327868933", "favorited": false, "retweeted": false, "lang": "en", "supplemental_language": null, "self_thread": {"id": 1448596203327868933, "id_str": "1448596203327868933"}}}
{"object_type": "TweetRaw", "download_datetime": "2021-10-14T13:13:27.474106+02:00", "raw_value": {"created_at": "Wed Oct 13 23:10:01 +0000 2021", "id": 1448425824282152961, "id_str": "1448425824282152961", "full_text": "\u201cNow we are dealing with censorship regarding the benefits of natural immunity,\u201d Johnson said.\n\n#Censorship on social media platforms about successful treatments of victims of #COVID19 are causing people to lose their lives, according to @SenRonJohnson. https://t.co/zD0jwZEoc9", "truncated": false, "display_text_range": [0, 277], "entities": {"hashtags": [{"text": "Censorship", "indices": [96, 107]}, {"text": "COVID19", "indices": [176, 184]}], "symbols": [], "user_mentions": [{"screen_name": "SenRonJohnson", "name": "Senator Ron Johnson", "id": 233737858, "id_str": "233737858", "indices": [238, 252]}], "urls": [{"url": "https://t.co/zD0jwZEoc9", "expanded_url": "https://www.theepochtimes.com/sen-ron-johnson-says-lives-are-being-lost-due-to-big-tech-censorship-of-conservatives_4044559.html?utm_medium=social&utm_source=twitter&utm_campaign=digitalsub", "display_url": "theepochtimes.com/sen-ron-johnso\u2026", "indices": [254, 277]}]}, "source": "<a href=\"https://buffer.com\" rel=\"nofollow\">Buffer</a>", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user_id": 29097819, "user_id_str": "29097819", "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 61, "favorite_count": 109, "reply_count": 3, "quote_count": 2, "conversation_id": 1448425824282152961, "conversation_id_str": "1448425824282152961", "favorited": false, "retweeted": false, "possibly_sensitive": false, "possibly_sensitive_editable": true, "card": {"name": "summary_large_image", "url": "https://t.co/zD0jwZEoc9", "card_type_url": "http://card-type-url-is-deprecated.invalid", "binding_values": {"vanity_url": {"type": "STRING", "string_value": "theepochtimes.com", "scribe_key": "vanity_url"}, "amp": {"type": "BOOLEAN", "boolean_value": true}, "domain": {"type": "STRING", "string_value": "www.theepochtimes.com"}, "creator": {"type": "USER", "user_value": {"id_str": "14061583", "path": []}}, "site": {"type": "USER", "user_value": {"id_str": "29097819", "path": []}, "scribe_key": "publisher_id"}, "title": {"type": "STRING", "string_value": "Sen. Ron Johnson Says Lives Are Being Lost Due to Big Tech Censorship of Conservatives"}, "description": {"type": "STRING", "string_value": "Censorship of videos and written posts on major social media outlets about successful treatments of victims of the ..."}, "thumbnail_image_small": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1447614987783086090/BOX-qE0l?format=jpg&name=100x100", "width": 100, "height": 67, "alt": null}}, "thumbnail_image": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1447614987783086090/BOX-qE0l?format=jpg&name=280x150", "width": 225, "height": 150, "alt": null}}, "thumbnail_image_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1447614987783086090/BOX-qE0l?format=jpg&name=800x320_1", "width": 480, "height": 320, "alt": null}}, "thumbnail_image_x_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1447614987783086090/BOX-qE0l?format=png&name=2048x2048_2_exp", "width": 2048, "height": 1365, "alt": null}}, "thumbnail_image_original": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1447614987783086090/BOX-qE0l?format=jpg&name=orig", "width": 5149, "height": 3432, "alt": null}}, "summary_photo_image_small": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1447614987783086090/BOX-qE0l?format=jpg&name=386x202", "width": 386, "height": 202, "alt": null}}, "summary_photo_image": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1447614987783086090/BOX-qE0l?format=jpg&name=600x314", "width": 600, "height": 314, "alt": null}}, "summary_photo_image_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1447614987783086090/BOX-qE0l?format=jpg&name=800x419", "width": 800, "height": 419, "alt": null}}, "summary_photo_image_x_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1447614987783086090/BOX-qE0l?format=png&name=2048x2048_2_exp", "width": 2048, "height": 1365, "alt": null}}, "summary_photo_image_original": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1447614987783086090/BOX-qE0l?format=jpg&name=orig", "width": 5149, "height": 3432, "alt": null}}, "photo_image_full_size_small": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1447614987783086090/BOX-qE0l?format=jpg&name=386x202", "width": 386, "height": 202, "alt": null}}, "photo_image_full_size": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1447614987783086090/BOX-qE0l?format=jpg&name=600x314", "width": 600, "height": 314, "alt": null}}, "photo_image_full_size_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1447614987783086090/BOX-qE0l?format=jpg&name=800x419", "width": 800, "height": 419, "alt": null}}, "photo_image_full_size_x_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1447614987783086090/BOX-qE0l?format=png&name=2048x2048_2_exp", "width": 2048, "height": 1365, "alt": null}}, "photo_image_full_size_original": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1447614987783086090/BOX-qE0l?format=jpg&name=orig", "width": 5149, "height": 3432, "alt": null}}, "card_url": {"type": "STRING", "string_value": "https://t.co/zD0jwZEoc9", "scribe_key": "card_url"}}, "users": {"14061583": {"id": 14061583, "id_str": "14061583", "name": "Mark Tapscott", "screen_name": "mtapscott", "location": "N 39\u00b019' 0'' / W 77\u00b00' 0''", "description": "HillFaith Founding Editor, Congressional Correspondent for The Epoch Times, FOIA Hall of Fame, Reaganaut, Okie/Texan, Jesus is Lord. RTs are not endorsements.", "url": "https://t.co/YXH1mJ32EE", "entities": {"url": {"urls": [{"url": "https://t.co/YXH1mJ32EE", "expanded_url": "https://hillfaith.blog/", "display_url": "hillfaith.blog", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 4502, "fast_followers_count": 0, "normal_followers_count": 4502, "friends_count": 1181, "listed_count": 213, "created_at": "Fri Feb 29 19:45:37 +0000 2008", "favourites_count": 116, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 16016, "media_count": 2390, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "8B542B", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1407313594287636483/cPwAcBBK_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1407313594287636483/cPwAcBBK_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/14061583/1624364683", "profile_image_extensions_alt_text": null, "profile_image_extensions_media_availability": null, "profile_image_extensions_media_color": {"palette": [{"rgb": {"red": 199, "green": 195, "blue": 197}, "percentage": 51.5}, {"rgb": {"red": 48, "green": 58, "blue": 57}, "percentage": 35.44}, {"rgb": {"red": 132, "green": 85, "blue": 70}, "percentage": 6.48}, {"rgb": {"red": 170, "green": 172, "blue": 186}, "percentage": 1.28}, {"rgb": {"red": 185, "green": 134, "blue": 60}, "percentage": 0.91}]}, "profile_image_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_banner_extensions_alt_text": null, "profile_banner_extensions_media_availability": null, "profile_banner_extensions_media_color": {"palette": [{"rgb": {"red": 16, "green": 4, "blue": 3}, "percentage": 46.86}, {"rgb": {"red": 113, "green": 36, "blue": 20}, "percentage": 13.35}, {"rgb": {"red": 106, "green": 73, "blue": 48}, "percentage": 7.47}, {"rgb": {"red": 18, "green": 50, "blue": 165}, "percentage": 5.8}, {"rgb": {"red": 29, "green": 36, "blue": 69}, "percentage": 5.31}]}, "profile_banner_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_link_color": "1B95E0", "profile_sidebar_border_color": "D9B17E", "profile_sidebar_fill_color": "EADEAA", "profile_text_color": "333333", "profile_use_background_image": false, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "pinned_tweet_ids": [], "pinned_tweet_ids_str": [], "has_custom_timelines": false, "can_dm": null, "following": null, "follow_request_sent": null, "notifications": null, "muting": null, "blocking": null, "blocked_by": null, "want_retweets": null, "advertiser_account_type": "promotable_user", "advertiser_account_service_levels": [], "profile_interstitial_type": "", "business_profile_state": "none", "translator_type": "none", "withheld_in_countries": [], "followed_by": null, "ext": {"highlightedLabel": {"r": {"ok": {}}, "ttl": -1}}, "require_some_consent": false}, "29097819": {"id": 29097819, "id_str": "29097819", "name": "The Epoch Times", "screen_name": "EpochTimes", "location": "New York, USA", "description": "Independent, award-winning reporting based on Truth and Tradition. Free newsletter: https://t.co/0F3JANwb8P | Telegram: https://t.co/Hmk1epY4Kv | Watch: https://t.co/M1G2gEVJmq", "url": "https://t.co/udZgeB9zvZ", "entities": {"url": {"urls": [{"url": "https://t.co/udZgeB9zvZ", "expanded_url": "https://subscribe.epochtimes.com/", "display_url": "subscribe.epochtimes.com", "indices": [0, 23]}]}, "description": {"urls": [{"url": "https://t.co/0F3JANwb8P", "expanded_url": "http://ept.ms/\u2013Newsletters", "display_url": "ept.ms/\u2013Newsletters", "indices": [84, 107]}, {"url": "https://t.co/Hmk1epY4Kv", "expanded_url": "http://t.me/epochtimes", "display_url": "t.me/epochtimes", "indices": [120, 143]}, {"url": "https://t.co/M1G2gEVJmq", "expanded_url": "http://epochtv.com", "display_url": "epochtv.com", "indices": [153, 176]}]}}, "protected": false, "followers_count": 429648, "fast_followers_count": 0, "normal_followers_count": 429648, "friends_count": 80, "listed_count": 2756, "created_at": "Sun Apr 05 23:54:55 +0000 2009", "favourites_count": 36344, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": true, "statuses_count": 206931, "media_count": 13665, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "FFFFFF", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme4/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme4/bg.gif", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/954141295093698560/9x68uifu_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/954141295093698560/9x68uifu_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/29097819/1516660974", "profile_image_extensions_alt_text": null, "profile_image_extensions_media_color": {"palette": [{"rgb": {"red": 0, "green": 58, "blue": 108}, "percentage": 93.18}, {"rgb": {"red": 243, "green": 247, "blue": 248}, "percentage": 6.21}, {"rgb": {"red": 123, "green": 155, "blue": 180}, "percentage": 0.54}]}, "profile_image_extensions_media_availability": null, "profile_image_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_banner_extensions_alt_text": null, "profile_banner_extensions_media_availability": null, "profile_banner_extensions_media_color": {"palette": [{"rgb": {"red": 109, "green": 147, "blue": 196}, "percentage": 27.51}, {"rgb": {"red": 95, "green": 61, "blue": 32}, "percentage": 19.0}, {"rgb": {"red": 183, "green": 198, "blue": 212}, "percentage": 7.81}, {"rgb": {"red": 150, "green": 96, "blue": 36}, "percentage": 7.3}, {"rgb": {"red": 210, "green": 186, "blue": 148}, "percentage": 7.29}]}, "profile_banner_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_link_color": "00218F", "profile_sidebar_border_color": "FFFFFF", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "3C3940", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": false, "default_profile_image": false, "pinned_tweet_ids": [1418577899142225927], "pinned_tweet_ids_str": ["1418577899142225927"], "has_custom_timelines": false, "can_dm": null, "following": null, "follow_request_sent": null, "notifications": null, "muting": null, "blocking": null, "blocked_by": null, "want_retweets": null, "advertiser_account_type": "promotable_user", "advertiser_account_service_levels": ["mms", "smb", "subscription"], "profile_interstitial_type": "", "business_profile_state": "none", "translator_type": "none", "withheld_in_countries": [], "followed_by": null, "ext": {"highlightedLabel": {"r": {"ok": {}}, "ttl": -1}}, "require_some_consent": false}}, "card_platform": {"platform": {"device": {"name": "Swift", "version": "12"}, "audience": {"name": "production", "bucket": null}}}}, "lang": "en", "supplemental_language": null}}
{"object_type": "TweetRaw", "download_datetime": "2021-10-14T13:13:27.474287+02:00", "raw_value": {"created_at": "Thu Oct 14 09:58:17 +0000 2021", "id": 1448588965699801093, "id_str": "1448588965699801093", "full_text": "I have a dream #PassSanitaire #PassDeLaHonte #COVID19 https://t.co/NwUDR1tLg4", "truncated": false, "display_text_range": [0, 53], "entities": {"hashtags": [{"text": "PassSanitaire", "indices": [15, 29]}, {"text": "PassDeLaHonte", "indices": [30, 44]}, {"text": "COVID19", "indices": [45, 53]}], "symbols": [], "user_mentions": [], "urls": [], "media": [{"id": 1448588962335969281, "id_str": "1448588962335969281", "indices": [54, 77], "media_url": "http://pbs.twimg.com/media/FBpr_H2WUAE4EgI.jpg", "media_url_https": "https://pbs.twimg.com/media/FBpr_H2WUAE4EgI.jpg", "url": "https://t.co/NwUDR1tLg4", "display_url": "pic.twitter.com/NwUDR1tLg4", "expanded_url": "https://twitter.com/subversifperrin/status/1448588965699801093/photo/1", "type": "photo", "original_info": {"width": 452, "height": 545, "focus_rects": [{"x": 0, "y": 187, "h": 253, "w": 452}, {"x": 0, "y": 87, "h": 452, "w": 452}, {"x": 0, "y": 30, "h": 515, "w": 452}, {"x": 0, "y": 0, "h": 545, "w": 273}, {"x": 0, "y": 0, "h": 545, "w": 452}]}, "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 452, "h": 545, "resize": "fit"}, "large": {"w": 452, "h": 545, "resize": "fit"}, "medium": {"w": 452, "h": 545, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 1448588962335969281, "id_str": "1448588962335969281", "indices": [54, 77], "media_url": "http://pbs.twimg.com/media/FBpr_H2WUAE4EgI.jpg", "media_url_https": "https://pbs.twimg.com/media/FBpr_H2WUAE4EgI.jpg", "url": "https://t.co/NwUDR1tLg4", "display_url": "pic.twitter.com/NwUDR1tLg4", "expanded_url": "https://twitter.com/subversifperrin/status/1448588965699801093/photo/1", "type": "photo", "original_info": {"width": 452, "height": 545, "focus_rects": [{"x": 0, "y": 187, "h": 253, "w": 452}, {"x": 0, "y": 87, "h": 452, "w": 452}, {"x": 0, "y": 30, "h": 515, "w": 452}, {"x": 0, "y": 0, "h": 545, "w": 273}, {"x": 0, "y": 0, "h": 545, "w": 452}]}, "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 452, "h": 545, "resize": "fit"}, "large": {"w": 452, "h": 545, "resize": "fit"}, "medium": {"w": 452, "h": 545, "resize": "fit"}}, "media_key": "3_1448588962335969281", "ext_alt_text": null, "ext_media_availability": {"status": "available"}, "ext_media_color": {"palette": [{"rgb": {"red": 4, "green": 5, "blue": 12}, "percentage": 76.55}, {"rgb": {"red": 194, "green": 195, "blue": 197}, "percentage": 18.06}, {"rgb": {"red": 109, "green": 115, "blue": 132}, "percentage": 1.85}, {"rgb": {"red": 7, "green": 30, "blue": 60}, "percentage": 0.46}]}, "ext": {"mediaStats": {"r": "Missing", "ttl": -1}}}]}, "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user_id": 2717932566, "user_id_str": "2717932566", "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 7, "favorite_count": 9, "reply_count": 1, "quote_count": 0, "conversation_id": 1448588965699801093, "conversation_id_str": "1448588965699801093", "favorited": false, "retweeted": false, "possibly_sensitive": false, "possibly_sensitive_editable": true, "lang": "en", "supplemental_language": null}}
{"object_type": "TweetRaw", "download_datetime": "2021-10-14T13:13:27.474471+02:00", "raw_value": {"created_at": "Thu Oct 14 01:47:09 +0000 2021", "id": 1448465369174261762, "id_str": "1448465369174261762", "full_text": "The debate over #COVID19 vaccine funding pitted @GovChrisSununu vs. fellow Republicans on the Executive Council. Sununu told them their reservations were \"based on fantasy\" &amp; their insistence he try to stop private sector mandates amounted to \"pure communism.\" #NHPolitics #WMUR https://t.co/DnjWcRaSlI", "truncated": false, "display_text_range": [0, 282], "entities": {"hashtags": [{"text": "COVID19", "indices": [16, 24]}, {"text": "NHPolitics", "indices": [265, 276]}, {"text": "WMUR", "indices": [277, 282]}], "symbols": [], "user_mentions": [{"screen_name": "GovChrisSununu", "name": "Chris Sununu", "id": 816282120767291392, "id_str": "816282120767291392", "indices": [48, 63]}], "urls": [], "media": [{"id": 1448463660326789120, "id_str": "1448463660326789120", "indices": [283, 306], "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/1448463660326789120/pu/img/bVs5RtuOjbOHXzwH.jpg", "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/1448463660326789120/pu/img/bVs5RtuOjbOHXzwH.jpg", "url": "https://t.co/DnjWcRaSlI", "display_url": "pic.twitter.com/DnjWcRaSlI", "expanded_url": "https://twitter.com/AdamSextonWMUR/status/1448465369174261762/video/1", "type": "photo", "original_info": {"width": 1920, "height": 1080}, "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 1920, "h": 1080, "resize": "fit"}, "medium": {"w": 1200, "h": 675, "resize": "fit"}, "small": {"w": 680, "h": 383, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 1448463660326789120, "id_str": "1448463660326789120", "indices": [283, 306], "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/1448463660326789120/pu/img/bVs5RtuOjbOHXzwH.jpg", "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/1448463660326789120/pu/img/bVs5RtuOjbOHXzwH.jpg", "url": "https://t.co/DnjWcRaSlI", "display_url": "pic.twitter.com/DnjWcRaSlI", "expanded_url": "https://twitter.com/AdamSextonWMUR/status/1448465369174261762/video/1", "type": "video", "original_info": {"width": 1920, "height": 1080}, "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 1920, "h": 1080, "resize": "fit"}, "medium": {"w": 1200, "h": 675, "resize": "fit"}, "small": {"w": 680, "h": 383, "resize": "fit"}}, "video_info": {"aspect_ratio": [16, 9], "duration_millis": 129462, "variants": [{"bitrate": 256000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/1448463660326789120/pu/vid/480x270/M-YSzLGFs8kn2jev.mp4?tag=12"}, {"bitrate": 2176000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/1448463660326789120/pu/vid/1280x720/dYiRIZ7-we-uFKck.mp4?tag=12"}, {"content_type": "application/x-mpegURL", "url": "https://video.twimg.com/ext_tw_video/1448463660326789120/pu/pl/9AEKnexaOuglfe2M.m3u8?tag=12&container=fmp4"}, {"bitrate": 832000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/1448463660326789120/pu/vid/640x360/8-ZCQIrLQkIbqi5J.mp4?tag=12"}]}, "media_key": "7_1448463660326789120", "ext_alt_text": null, "ext_media_availability": {"status": "available"}, "ext_media_color": {"palette": [{"rgb": {"red": 74, "green": 84, "blue": 84}, "percentage": 81.2}, {"rgb": {"red": 194, "green": 194, "blue": 184}, "percentage": 8.08}, {"rgb": {"red": 95, "green": 101, "blue": 117}, "percentage": 2.33}, {"rgb": {"red": 231, "green": 218, "blue": 148}, "percentage": 1.71}, {"rgb": {"red": 85, "green": 52, "blue": 59}, "percentage": 1.4}]}, "ext": {"mediaStats": {"r": {"ok": {"viewCount": "6243"}}, "ttl": -1}}, "additional_media_info": {"monetizable": false}}]}, "source": "<a href=\"https://mobile.twitter.com\" rel=\"nofollow\">Twitter Web App</a>", "in_reply_to_status_id": 1448435936270983171, "in_reply_to_status_id_str": "1448435936270983171", "in_reply_to_user_id": 1876175636, "in_reply_to_user_id_str": "1876175636", "in_reply_to_screen_name": "AdamSextonWMUR", "user_id": 1876175636, "user_id_str": "1876175636", "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 40, "favorite_count": 121, "reply_count": 14, "quote_count": 54, "conversation_id": 1448278219229122566, "conversation_id_str": "1448278219229122566", "favorited": false, "retweeted": false, "possibly_sensitive": false, "possibly_sensitive_editable": true, "lang": "en", "supplemental_language": null, "self_thread": {"id": 1448278219229122566, "id_str": "1448278219229122566"}}}
{"object_type": "TweetRaw", "download_datetime": "2021-10-14T13:13:27.474653+02:00", "raw_value": {"created_at": "Thu Oct 14 10:34:07 +0000 2021", "id": 1448597983419904004, "id_str": "1448597983419904004", "full_text": "Sometimes a book is better than the ephemera of social media posts. Nice to see this Journal of our plague year  @Coldwar_Steve #COVID19 #Brexit https://t.co/8PeVABWLCF", "truncated": false, "display_text_range": [0, 144], "entities": {"hashtags": [{"text": "COVID19", "indices": [128, 136]}, {"text": "Brexit", "indices": [137, 144]}], "symbols": [], "user_mentions": [{"screen_name": "Coldwar_Steve", "name": "Cold War Steve", "id": 705709976501817348, "id_str": "705709976501817348", "indices": [113, 127]}], "urls": [], "media": [{"id": 1448597976025346051, "id_str": "1448597976025346051", "indices": [145, 168], "media_url": "http://pbs.twimg.com/media/FBp0LydXMAMDIQb.jpg", "media_url_https": "https://pbs.twimg.com/media/FBp0LydXMAMDIQb.jpg", "url": "https://t.co/8PeVABWLCF", "display_url": "pic.twitter.com/8PeVABWLCF", "expanded_url": "https://twitter.com/paulfillingham/status/1448597983419904004/photo/1", "type": "photo", "original_info": {"width": 2048, "height": 1150, "focus_rects": [{"x": 0, "y": 0, "h": 1147, "w": 2048}, {"x": 89, "y": 0, "h": 1150, "w": 1150}, {"x": 160, "y": 0, "h": 1150, "w": 1009}, {"x": 377, "y": 0, "h": 1150, "w": 575}, {"x": 0, "y": 0, "h": 1150, "w": 2048}]}, "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 1200, "h": 674, "resize": "fit"}, "large": {"w": 2048, "h": 1150, "resize": "fit"}, "small": {"w": 680, "h": 382, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 1448597976025346051, "id_str": "1448597976025346051", "indices": [145, 168], "media_url": "http://pbs.twimg.com/media/FBp0LydXMAMDIQb.jpg", "media_url_https": "https://pbs.twimg.com/media/FBp0LydXMAMDIQb.jpg", "url": "https://t.co/8PeVABWLCF", "display_url": "pic.twitter.com/8PeVABWLCF", "expanded_url": "https://twitter.com/paulfillingham/status/1448597983419904004/photo/1", "type": "photo", "original_info": {"width": 2048, "height": 1150, "focus_rects": [{"x": 0, "y": 0, "h": 1147, "w": 2048}, {"x": 89, "y": 0, "h": 1150, "w": 1150}, {"x": 160, "y": 0, "h": 1150, "w": 1009}, {"x": 377, "y": 0, "h": 1150, "w": 575}, {"x": 0, "y": 0, "h": 1150, "w": 2048}]}, "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 1200, "h": 674, "resize": "fit"}, "large": {"w": 2048, "h": 1150, "resize": "fit"}, "small": {"w": 680, "h": 382, "resize": "fit"}}, "media_key": "3_1448597976025346051", "ext_alt_text": null, "ext_media_availability": {"status": "available"}, "ext_media_color": {"palette": [{"rgb": {"red": 133, "green": 98, "blue": 66}, "percentage": 47.11}, {"rgb": {"red": 210, "green": 214, "blue": 215}, "percentage": 26.41}, {"rgb": {"red": 60, "green": 42, "blue": 26}, "percentage": 5.98}, {"rgb": {"red": 125, "green": 170, "blue": 221}, "percentage": 5.4}, {"rgb": {"red": 196, "green": 151, "blue": 103}, "percentage": 4.87}]}, "ext": {"mediaStats": {"r": "Missing", "ttl": -1}}}]}, "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user_id": 23622484, "user_id_str": "23622484", "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "reply_count": 0, "quote_count": 0, "conversation_id": 1448597983419904004, "conversation_id_str": "1448597983419904004", "favorited": false, "retweeted": false, "possibly_sensitive": false, "possibly_sensitive_editable": true, "lang": "en", "supplemental_language": null}}
{"object_type": "TweetRaw", "download_datetime": "2021-10-14T13:13:27.474761+02:00", "raw_value": {"created_at": "Thu Oct 14 04:23:14 +0000 2021", "id": 1448504647451168771, "id_str": "1448504647451168771", "full_text": "Mu$lims did it. Why did Hindus send #COVID19 vaccine to Bangladesh to keep these Mullahs safe there ? @JPNadda  @narendramodi @BJP4India", "truncated": false, "display_text_range": [0, 136], "entities": {"hashtags": [{"text": "COVID19", "indices": [36, 44]}], "symbols": [], "user_mentions": [{"screen_name": "JPNadda", "name": "Jagat Prakash Nadda", "id": 2990611686, "id_str": "2990611686", "indices": [102, 110]}, {"screen_name": "narendramodi", "name": "Narendra Modi", "id": 18839785, "id_str": "18839785", "indices": [112, 125]}, {"screen_name": "BJP4India", "name": "BJP", "id": 207809313, "id_str": "207809313", "indices": [126, 136]}], "urls": []}, "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user_id": 1444885267156897792, "user_id_str": "1444885267156897792", "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1448348406808674305, "quoted_status_id_str": "1448348406808674305", "quoted_status_permalink": {"url": "https://t.co/BE86OY7ysl", "expanded": "https://twitter.com/avroneel90/status/1448348406808674305", "display": "twitter.com/avroneel90/sta\u2026"}, "retweet_count": 0, "favorite_count": 1, "reply_count": 0, "quote_count": 0, "conversation_id": 1448504647451168771, "conversation_id_str": "1448504647451168771", "favorited": false, "retweeted": false, "lang": "en", "supplemental_language": null}}
{"object_type": "TweetRaw", "download_datetime": "2021-10-14T13:13:27.475021+02:00", "raw_value": {"created_at": "Thu Oct 14 11:10:01 +0000 2021", "id": 1448607016755335169, "id_str": "1448607016755335169", "full_text": "Despite the steady decline of new #Covid19 cases in Eastern Visayas, the Department of Health-8 has called on the public not to be complacent. https://t.co/pXbU1IJTtn", "truncated": false, "display_text_range": [0, 166], "entities": {"hashtags": [{"text": "Covid19", "indices": [34, 42]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/pXbU1IJTtn", "expanded_url": "https://www.pna.gov.ph/articles/1156653", "display_url": "pna.gov.ph/articles/11566\u2026", "indices": [143, 166]}]}, "source": "<a href=\"https://buffer.com\" rel=\"nofollow\">Buffer</a>", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user_id": 823349574739734528, "user_id_str": "823349574739734528", "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 1, "reply_count": 0, "quote_count": 0, "conversation_id": 1448607016755335169, "conversation_id_str": "1448607016755335169", "favorited": false, "retweeted": false, "possibly_sensitive": false, "possibly_sensitive_editable": true, "card": {"name": "summary_large_image", "url": "https://t.co/pXbU1IJTtn", "card_type_url": "http://card-type-url-is-deprecated.invalid", "binding_values": {"vanity_url": {"type": "STRING", "string_value": "pna.gov.ph", "scribe_key": "vanity_url"}, "domain": {"type": "STRING", "string_value": "www.pna.gov.ph"}, "site": {"type": "USER", "user_value": {"id_str": "823349574739734528", "path": []}, "scribe_key": "publisher_id"}, "title": {"type": "STRING", "string_value": "Region 8 urged not to be complacent amid Covid-19 case drop"}, "description": {"type": "STRING", "string_value": "TACLOBAN CITY \u2013 Despite the steady decline of new Covid-19 cases in Eastern Visayas, the Department of Health (DOH regional office here has called on the public not to be complacent.DOH Eastern..."}, "thumbnail_image_small": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448607021306163202/HH1hsASu?format=jpg&name=144x144", "width": 144, "height": 75, "alt": null}}, "thumbnail_image": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448607021306163202/HH1hsASu?format=jpg&name=280x150", "width": 280, "height": 147, "alt": null}}, "thumbnail_image_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448607021306163202/HH1hsASu?format=jpg&name=600x600", "width": 600, "height": 314, "alt": null}}, "thumbnail_image_x_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448607021306163202/HH1hsASu?format=png&name=2048x2048_2_exp", "width": 720, "height": 377, "alt": null}}, "thumbnail_image_original": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448607021306163202/HH1hsASu?format=jpg&name=orig", "width": 720, "height": 377, "alt": null}}, "summary_photo_image_small": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448607021306163202/HH1hsASu?format=jpg&name=386x202", "width": 386, "height": 202, "alt": null}}, "summary_photo_image": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448607021306163202/HH1hsASu?format=jpg&name=600x314", "width": 600, "height": 314, "alt": null}}, "summary_photo_image_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448607021306163202/HH1hsASu?format=jpg&name=800x419", "width": 720, "height": 377, "alt": null}}, "summary_photo_image_x_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448607021306163202/HH1hsASu?format=png&name=2048x2048_2_exp", "width": 720, "height": 377, "alt": null}}, "summary_photo_image_original": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448607021306163202/HH1hsASu?format=jpg&name=orig", "width": 720, "height": 377, "alt": null}}, "photo_image_full_size_small": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448607021306163202/HH1hsASu?format=jpg&name=386x202", "width": 386, "height": 202, "alt": null}}, "photo_image_full_size": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448607021306163202/HH1hsASu?format=jpg&name=600x314", "width": 600, "height": 314, "alt": null}}, "photo_image_full_size_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448607021306163202/HH1hsASu?format=jpg&name=800x419", "width": 720, "height": 377, "alt": null}}, "photo_image_full_size_x_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448607021306163202/HH1hsASu?format=png&name=2048x2048_2_exp", "width": 720, "height": 377, "alt": null}}, "photo_image_full_size_original": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448607021306163202/HH1hsASu?format=jpg&name=orig", "width": 720, "height": 377, "alt": null}}, "card_url": {"type": "STRING", "string_value": "https://t.co/pXbU1IJTtn", "scribe_key": "card_url"}}, "users": {"823349574739734528": {"id": 823349574739734528, "id_str": "823349574739734528", "name": "Phil News Agency", "screen_name": "pnagovph", "location": "Quezon City", "description": "The official Twitter account of Philippine News Agency, the newswire service of the Philippine government.", "url": "https://t.co/TP6T0vSjfl", "entities": {"url": {"urls": [{"url": "https://t.co/TP6T0vSjfl", "expanded_url": "http://www.pna.gov.ph", "display_url": "pna.gov.ph", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 33555, "fast_followers_count": 0, "normal_followers_count": 33555, "friends_count": 476, "listed_count": 312, "created_at": "Mon Jan 23 02:00:10 +0000 2017", "favourites_count": 15343, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": true, "statuses_count": 93418, "media_count": 27071, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "F5F8FA", "profile_background_image_url": null, "profile_background_image_url_https": null, "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/823351559643807744/ciWl5UpC_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/823351559643807744/ciWl5UpC_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/823349574739734528/1547532459", "profile_image_extensions_alt_text": null, "profile_image_extensions_media_availability": null, "profile_image_extensions_media_color": {"palette": [{"rgb": {"red": 42, "green": 37, "blue": 137}, "percentage": 71.78}, {"rgb": {"red": 255, "green": 255, "blue": 255}, "percentage": 24.68}, {"rgb": {"red": 125, "green": 123, "blue": 173}, "percentage": 3.14}, {"rgb": {"red": 181, "green": 175, "blue": 211}, "percentage": 0.19}, {"rgb": {"red": 69, "green": 64, "blue": 130}, "percentage": 0.16}]}, "profile_image_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_banner_extensions_alt_text": null, "profile_banner_extensions_media_availability": null, "profile_banner_extensions_media_color": {"palette": [{"rgb": {"red": 57, "green": 61, "blue": 65}, "percentage": 53.49}, {"rgb": {"red": 97, "green": 107, "blue": 112}, "percentage": 42.42}, {"rgb": {"red": 74, "green": 85, "blue": 111}, "percentage": 2.18}, {"rgb": {"red": 46, "green": 41, "blue": 139}, "percentage": 0.56}, {"rgb": {"red": 197, "green": 198, "blue": 200}, "percentage": 0.45}]}, "profile_banner_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": true, "default_profile_image": false, "pinned_tweet_ids": [], "pinned_tweet_ids_str": [], "has_custom_timelines": true, "can_dm": null, "following": null, "follow_request_sent": null, "notifications": null, "muting": null, "blocking": null, "blocked_by": null, "want_retweets": null, "advertiser_account_type": "promotable_user", "advertiser_account_service_levels": [], "profile_interstitial_type": "", "business_profile_state": "none", "translator_type": "none", "withheld_in_countries": [], "followed_by": null, "ext": {"highlightedLabel": {"r": {"ok": {}}, "ttl": -1}}, "require_some_consent": false}}, "card_platform": {"platform": {"device": {"name": "Swift", "version": "12"}, "audience": {"name": "production", "bucket": null}}}}, "lang": "en", "supplemental_language": null}}
{"object_type": "TweetRaw", "download_datetime": "2021-10-14T13:13:27.475114+02:00", "raw_value": {"created_at": "Wed Oct 13 22:57:50 +0000 2021", "id": 1448422756526092289, "id_str": "1448422756526092289", "full_text": "Is #covid19 disappeared cuz\nI hear zero about it \ud83e\udd27", "truncated": false, "display_text_range": [0, 50], "entities": {"hashtags": [{"text": "covid19", "indices": [3, 11]}], "symbols": [], "user_mentions": [], "urls": []}, "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user_id": 24073436, "user_id_str": "24073436", "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 3, "reply_count": 0, "quote_count": 0, "conversation_id": 1448422756526092289, "conversation_id_str": "1448422756526092289", "favorited": false, "retweeted": false, "lang": "en", "supplemental_language": null}}
{"object_type": "TweetRaw", "download_datetime": "2021-10-14T13:13:27.475276+02:00", "raw_value": {"created_at": "Thu Oct 14 02:40:05 +0000 2021", "id": 1448478690334085121, "id_str": "1448478690334085121", "full_text": "Just tear up the #COVID19 mandate by this tyrannical government just like Nansheee (slurrred) tore up President Trump's Speech!\n\ud83c\uddfa\ud83c\uddf2\nCc @DonaldJTrumpJr https://t.co/uoYY14BOrl", "truncated": false, "display_text_range": [0, 149], "entities": {"hashtags": [{"text": "COVID19", "indices": [17, 25]}], "symbols": [], "user_mentions": [{"screen_name": "DonaldJTrumpJr", "name": "Donald Trump Jr.", "id": 39344374, "id_str": "39344374", "indices": [134, 149]}], "urls": [], "media": [{"id": 1448478683400970240, "id_str": "1448478683400970240", "indices": [150, 173], "media_url": "http://pbs.twimg.com/tweet_video_thumb/FBoHsCzXIAA9lUb.jpg", "media_url_https": "https://pbs.twimg.com/tweet_video_thumb/FBoHsCzXIAA9lUb.jpg", "url": "https://t.co/uoYY14BOrl", "display_url": "pic.twitter.com/uoYY14BOrl", "expanded_url": "https://twitter.com/OklahomaOilman/status/1448478690334085121/photo/1", "type": "photo", "original_info": {"width": 480, "height": 306}, "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 480, "h": 306, "resize": "fit"}, "large": {"w": 480, "h": 306, "resize": "fit"}, "small": {"w": 480, "h": 306, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 1448478683400970240, "id_str": "1448478683400970240", "indices": [150, 173], "media_url": "http://pbs.twimg.com/tweet_video_thumb/FBoHsCzXIAA9lUb.jpg", "media_url_https": "https://pbs.twimg.com/tweet_video_thumb/FBoHsCzXIAA9lUb.jpg", "url": "https://t.co/uoYY14BOrl", "display_url": "pic.twitter.com/uoYY14BOrl", "expanded_url": "https://twitter.com/OklahomaOilman/status/1448478690334085121/photo/1", "type": "animated_gif", "original_info": {"width": 480, "height": 306}, "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "medium": {"w": 480, "h": 306, "resize": "fit"}, "large": {"w": 480, "h": 306, "resize": "fit"}, "small": {"w": 480, "h": 306, "resize": "fit"}}, "video_info": {"aspect_ratio": [80, 51], "variants": [{"bitrate": 0, "content_type": "video/mp4", "url": "https://video.twimg.com/tweet_video/FBoHsCzXIAA9lUb.mp4"}]}, "media_key": "16_1448478683400970240", "ext_alt_text": "Nancy Pelosi Reaction GIF by GIPHY News", "ext_media_availability": {"status": "available"}, "ext_media_color": {"palette": [{"rgb": {"red": 57, "green": 39, "blue": 35}, "percentage": 42.66}, {"rgb": {"red": 224, "green": 174, "blue": 155}, "percentage": 24.92}, {"rgb": {"red": 132, "green": 79, "blue": 62}, "percentage": 7.49}, {"rgb": {"red": 235, "green": 232, "blue": 231}, "percentage": 3.3}, {"rgb": {"red": 204, "green": 139, "blue": 120}, "percentage": 2.43}]}, "ext": {"mediaStats": {"r": "Missing", "ttl": -1}}}]}, "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user_id": 2907314007, "user_id_str": "2907314007", "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 1, "favorite_count": 1, "reply_count": 0, "quote_count": 0, "conversation_id": 1448478690334085121, "conversation_id_str": "1448478690334085121", "favorited": false, "retweeted": false, "possibly_sensitive": false, "possibly_sensitive_editable": true, "lang": "en", "supplemental_language": null}}
{"object_type": "TweetRaw", "download_datetime": "2021-10-14T13:13:27.475532+02:00", "raw_value": {"created_at": "Thu Oct 14 08:33:42 +0000 2021", "id": 1448567678281596928, "id_str": "1448567678281596928", "full_text": "SPAIN - masks will now be required to control flu, whilst flu exists. Forever then.\n\nAs I have said often, my worry isn\u2019t that we will treat Covid like flu, but that we will treat flu like Covid.\n\nAnd here it is.\n\n#NoVaccinePassports #COVID19 #flu \n\nhttps://t.co/SHLRta6lQy", "truncated": false, "display_text_range": [0, 273], "entities": {"hashtags": [{"text": "NoVaccinePassports", "indices": [214, 233]}, {"text": "COVID19", "indices": [234, 242]}, {"text": "flu", "indices": [243, 247]}], "symbols": [], "user_mentions": [], "urls": [], "media": [{"id": 1448385151021506560, "id_str": "1448385151021506560", "indices": [250, 273], "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/1448385151021506560/pu/img/nZxg9T2NvePYzp-m.jpg", "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/1448385151021506560/pu/img/nZxg9T2NvePYzp-m.jpg", "url": "https://t.co/SHLRta6lQy", "display_url": "pic.twitter.com/SHLRta6lQy", "expanded_url": "https://twitter.com/plaforscience/status/1448385189739126791/video/1", "type": "photo", "original_info": {"width": 640, "height": 320}, "sizes": {"medium": {"w": 640, "h": 320, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 640, "h": 320, "resize": "fit"}, "small": {"w": 640, "h": 320, "resize": "fit"}}, "source_status_id": 1448385189739126791, "source_status_id_str": "1448385189739126791", "source_user_id": 1259237443867414528, "source_user_id_str": "1259237443867414528"}]}, "extended_entities": {"media": [{"id": 1448385151021506560, "id_str": "1448385151021506560", "indices": [250, 273], "media_url": "http://pbs.twimg.com/ext_tw_video_thumb/1448385151021506560/pu/img/nZxg9T2NvePYzp-m.jpg", "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/1448385151021506560/pu/img/nZxg9T2NvePYzp-m.jpg", "url": "https://t.co/SHLRta6lQy", "display_url": "pic.twitter.com/SHLRta6lQy", "expanded_url": "https://twitter.com/plaforscience/status/1448385189739126791/video/1", "type": "video", "original_info": {"width": 640, "height": 320}, "sizes": {"medium": {"w": 640, "h": 320, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 640, "h": 320, "resize": "fit"}, "small": {"w": 640, "h": 320, "resize": "fit"}}, "source_status_id": 1448385189739126791, "source_status_id_str": "1448385189739126791", "source_user_id": 1259237443867414528, "source_user_id_str": "1259237443867414528", "video_info": {"aspect_ratio": [2, 1], "duration_millis": 18159, "variants": [{"bitrate": 256000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/1448385151021506560/pu/vid/540x270/JMHI4ut_8cbI7eFE.mp4?tag=12"}, {"bitrate": 832000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/1448385151021506560/pu/vid/640x320/iXwwOmml6pZRL25j.mp4?tag=12"}, {"content_type": "application/x-mpegURL", "url": "https://video.twimg.com/ext_tw_video/1448385151021506560/pu/pl/7PGd9ylxBR5MWcmh.m3u8?tag=12&container=fmp4"}]}, "media_key": "7_1448385151021506560", "ext_alt_text": null, "ext_media_availability": {"status": "available"}, "ext_media_color": {"palette": [{"rgb": {"red": 146, "green": 156, "blue": 158}, "percentage": 43.14}, {"rgb": {"red": 27, "green": 30, "blue": 73}, "percentage": 20.21}, {"rgb": {"red": 40, "green": 42, "blue": 43}, "percentage": 6.56}, {"rgb": {"red": 143, "green": 27, "blue": 24}, "percentage": 5.08}, {"rgb": {"red": 195, "green": 159, "blue": 2}, "percentage": 4.03}]}, "ext": {"mediaStats": {"r": {"ok": {"viewCount": "74318"}}, "ttl": -1}}, "additional_media_info": {"monetizable": false, "source_user": {"id": 1259237443867414528, "id_str": "1259237443867414528", "name": "plaforscience", "screen_name": "plaforscience", "location": "", "description": "Science is the only way.", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 7745, "fast_followers_count": 0, "normal_followers_count": 7745, "friends_count": 4, "listed_count": 89, "created_at": "Sat May 09 21:43:10 +0000 2020", "favourites_count": 2002, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 7760, "media_count": 2422, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "F5F8FA", "profile_background_image_url": null, "profile_background_image_url_https": null, "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1259237900807483393/VUcD6j-Z_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1259237900807483393/VUcD6j-Z_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1259237443867414528/1591260794", "profile_image_extensions_alt_text": null, "profile_image_extensions_media_availability": null, "profile_image_extensions_media_color": {"palette": [{"rgb": {"red": 53, "green": 56, "blue": 50}, "percentage": 43.26}, {"rgb": {"red": 161, "green": 171, "blue": 169}, "percentage": 37.26}, {"rgb": {"red": 96, "green": 106, "blue": 103}, "percentage": 16.56}, {"rgb": {"red": 93, "green": 103, "blue": 96}, "percentage": 6.83}]}, "profile_image_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_banner_extensions_alt_text": null, "profile_banner_extensions_media_availability": null, "profile_banner_extensions_media_color": {"palette": [{"rgb": {"red": 57, "green": 57, "blue": 57}, "percentage": 60.16}, {"rgb": {"red": 113, "green": 113, "blue": 113}, "percentage": 33.67}, {"rgb": {"red": 241, "green": 41, "blue": 8}, "percentage": 3.14}, {"rgb": {"red": 168, "green": 53, "blue": 31}, "percentage": 1.36}, {"rgb": {"red": 106, "green": 59, "blue": 48}, "percentage": 1.04}]}, "profile_banner_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": true, "default_profile_image": false, "pinned_tweet_ids": [1377688397616123905], "pinned_tweet_ids_str": ["1377688397616123905"], "has_custom_timelines": true, "can_dm": null, "following": null, "follow_request_sent": null, "notifications": null, "muting": null, "blocking": null, "blocked_by": null, "want_retweets": null, "advertiser_account_type": "promotable_user", "advertiser_account_service_levels": ["analytics"], "profile_interstitial_type": "", "business_profile_state": "none", "translator_type": "none", "withheld_in_countries": [], "followed_by": null, "ext": {"highlightedLabel": {"r": {"ok": {}}, "ttl": -1}}, "require_some_consent": false}}}]}, "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user_id": 755135678422327296, "user_id_str": "755135678422327296", "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 219, "favorite_count": 583, "reply_count": 49, "quote_count": 14, "conversation_id": 1448567678281596928, "conversation_id_str": "1448567678281596928", "favorited": false, "retweeted": false, "possibly_sensitive": false, "possibly_sensitive_editable": true, "lang": "en", "supplemental_language": null}}
{"object_type": "TweetRaw", "download_datetime": "2021-10-14T13:13:27.475638+02:00", "raw_value": {"created_at": "Thu Oct 14 08:35:32 +0000 2021", "id": 1448568142486196226, "id_str": "1448568142486196226", "full_text": "We encourage everyone to read this thread by @AnneMar45451941 who wrote to her MP to request their #COVID19 vaccination status.\n\nIf MP's are using Article 8 of the UK Human Rights Act (1998) to protect their private medical data, then this applies to the rest of the public.", "truncated": false, "display_text_range": [0, 274], "entities": {"hashtags": [{"text": "COVID19", "indices": [99, 107]}], "symbols": [], "user_mentions": [{"screen_name": "AnneMar45451941", "name": "Anne-Marie #Together\u2763\ufe0f", "id": 4656772816, "id_str": "4656772816", "indices": [45, 61]}], "urls": []}, "source": "<a href=\"https://mobile.twitter.com\" rel=\"nofollow\">Twitter Web App</a>", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user_id": 1320463487257247744, "user_id_str": "1320463487257247744", "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": true, "quoted_status_id": 1448287444923817984, "quoted_status_id_str": "1448287444923817984", "quoted_status_permalink": {"url": "https://t.co/1g3gCFCI8e", "expanded": "https://twitter.com/AnneMar45451941/status/1448287444923817984", "display": "twitter.com/AnneMar4545194\u2026"}, "retweet_count": 337, "favorite_count": 498, "reply_count": 28, "quote_count": 21, "conversation_id": 1448568142486196226, "conversation_id_str": "1448568142486196226", "favorited": false, "retweeted": false, "lang": "en", "supplemental_language": null, "self_thread": {"id": 1448568142486196226, "id_str": "1448568142486196226"}}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:27.479726+02:00", "raw_value": {"id": 823349574739734528, "id_str": "823349574739734528", "name": "Phil News Agency", "screen_name": "pnagovph", "location": "Quezon City", "description": "The official Twitter account of Philippine News Agency, the newswire service of the Philippine government.", "url": "https://t.co/TP6T0vSjfl", "entities": {"url": {"urls": [{"url": "https://t.co/TP6T0vSjfl", "expanded_url": "http://www.pna.gov.ph", "display_url": "pna.gov.ph", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 33555, "fast_followers_count": 0, "normal_followers_count": 33555, "friends_count": 476, "listed_count": 312, "created_at": "Mon Jan 23 02:00:10 +0000 2017", "favourites_count": 15343, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": true, "statuses_count": 93418, "media_count": 27071, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "F5F8FA", "profile_background_image_url": null, "profile_background_image_url_https": null, "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/823351559643807744/ciWl5UpC_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/823351559643807744/ciWl5UpC_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/823349574739734528/1547532459", "profile_image_extensions_alt_text": null, "profile_image_extensions_media_availability": null, "profile_image_extensions_media_color": {"palette": [{"rgb": {"red": 42, "green": 37, "blue": 137}, "percentage": 71.78}, {"rgb": {"red": 255, "green": 255, "blue": 255}, "percentage": 24.68}, {"rgb": {"red": 125, "green": 123, "blue": 173}, "percentage": 3.14}, {"rgb": {"red": 181, "green": 175, "blue": 211}, "percentage": 0.19}, {"rgb": {"red": 69, "green": 64, "blue": 130}, "percentage": 0.16}]}, "profile_image_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_banner_extensions_alt_text": null, "profile_banner_extensions_media_availability": null, "profile_banner_extensions_media_color": {"palette": [{"rgb": {"red": 57, "green": 61, "blue": 65}, "percentage": 53.49}, {"rgb": {"red": 97, "green": 107, "blue": 112}, "percentage": 42.42}, {"rgb": {"red": 74, "green": 85, "blue": 111}, "percentage": 2.18}, {"rgb": {"red": 46, "green": 41, "blue": 139}, "percentage": 0.56}, {"rgb": {"red": 197, "green": 198, "blue": 200}, "percentage": 0.45}]}, "profile_banner_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": true, "default_profile_image": false, "pinned_tweet_ids": [], "pinned_tweet_ids_str": [], "has_custom_timelines": true, "can_dm": null, "following": null, "follow_request_sent": null, "notifications": null, "muting": null, "blocking": null, "blocked_by": null, "want_retweets": null, "advertiser_account_type": "promotable_user", "advertiser_account_service_levels": [], "profile_interstitial_type": "", "business_profile_state": "none", "translator_type": "none", "withheld_in_countries": [], "followed_by": null, "ext": {"highlightedLabel": {"r": {"ok": {}}, "ttl": -1}}, "require_some_consent": false}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:27.479910+02:00", "raw_value": {"id": 1255871989690007554, "id_str": "1255871989690007554", "name": "Avro Neel Hindu\ud83d\udd49\ufe0f\ud83c\udde7\ud83c\udde9", "screen_name": "avroneel90", "location": "", "description": "I am a Bengali But my religion and my identity is Hindu. All the Hindus in the world are my Brothers and sister. Jay ShreeRam\ud83d\udea9\ud83d\udea9", "url": "https://t.co/CUJHMlmrpb", "entities": {"url": {"urls": [{"url": "https://t.co/CUJHMlmrpb", "expanded_url": "https://bengalhindubd.blogspot.com/", "display_url": "bengalhindubd.blogspot.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 1687, "fast_followers_count": 0, "normal_followers_count": 1687, "friends_count": 615, "listed_count": 8, "created_at": "Thu Apr 30 14:50:09 +0000 2020", "favourites_count": 4745, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 3880, "media_count": 1077, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "F5F8FA", "profile_background_image_url": null, "profile_background_image_url_https": null, "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1448252113134309378/1cxreDcJ_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1448252113134309378/1cxreDcJ_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1255871989690007554/1588258433", "profile_image_extensions_alt_text": null, "profile_image_extensions_media_color": {"palette": [{"rgb": {"red": 12, "green": 8, "blue": 8}, "percentage": 52.38}, {"rgb": {"red": 209, "green": 207, "blue": 205}, "percentage": 26.23}, {"rgb": {"red": 68, "green": 17, "blue": 8}, "percentage": 1.91}, {"rgb": {"red": 213, "green": 166, "blue": 83}, "percentage": 1.35}, {"rgb": {"red": 241, "green": 139, "blue": 37}, "percentage": 1.19}]}, "profile_image_extensions_media_availability": null, "profile_image_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_banner_extensions_alt_text": null, "profile_banner_extensions_media_availability": null, "profile_banner_extensions_media_color": {"palette": [{"rgb": {"red": 9, "green": 7, "blue": 10}, "percentage": 79.49}, {"rgb": {"red": 171, "green": 165, "blue": 167}, "percentage": 17.17}, {"rgb": {"red": 124, "green": 20, "blue": 21}, "percentage": 1.31}, {"rgb": {"red": 61, "green": 8, "blue": 11}, "percentage": 0.47}, {"rgb": {"red": 220, "green": 124, "blue": 56}, "percentage": 0.2}]}, "profile_banner_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": true, "default_profile_image": false, "pinned_tweet_ids": [1397445959626346498], "pinned_tweet_ids_str": ["1397445959626346498"], "has_custom_timelines": false, "can_dm": null, "following": null, "follow_request_sent": null, "notifications": null, "muting": null, "blocking": null, "blocked_by": null, "want_retweets": null, "advertiser_account_type": "none", "advertiser_account_service_levels": [], "profile_interstitial_type": "", "business_profile_state": "none", "translator_type": "none", "withheld_in_countries": [], "followed_by": null, "ext": {"highlightedLabel": {"r": {"ok": {}}, "ttl": -1}}, "require_some_consent": false}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:27.480110+02:00", "raw_value": {"id": 29097819, "id_str": "29097819", "name": "The Epoch Times", "screen_name": "EpochTimes", "location": "New York, USA", "description": "Independent, award-winning reporting based on Truth and Tradition. Free newsletter: https://t.co/0F3JANwb8P | Telegram: https://t.co/Hmk1epY4Kv | Watch: https://t.co/M1G2gEVJmq", "url": "https://t.co/udZgeB9zvZ", "entities": {"url": {"urls": [{"url": "https://t.co/udZgeB9zvZ", "expanded_url": "https://subscribe.epochtimes.com/", "display_url": "subscribe.epochtimes.com", "indices": [0, 23]}]}, "description": {"urls": [{"url": "https://t.co/0F3JANwb8P", "expanded_url": "http://ept.ms/\u2013Newsletters", "display_url": "ept.ms/\u2013Newsletters", "indices": [84, 107]}, {"url": "https://t.co/Hmk1epY4Kv", "expanded_url": "http://t.me/epochtimes", "display_url": "t.me/epochtimes", "indices": [120, 143]}, {"url": "https://t.co/M1G2gEVJmq", "expanded_url": "http://epochtv.com", "display_url": "epochtv.com", "indices": [153, 176]}]}}, "protected": false, "followers_count": 429648, "fast_followers_count": 0, "normal_followers_count": 429648, "friends_count": 80, "listed_count": 2756, "created_at": "Sun Apr 05 23:54:55 +0000 2009", "favourites_count": 36344, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": true, "statuses_count": 206931, "media_count": 13665, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "FFFFFF", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme4/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme4/bg.gif", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/954141295093698560/9x68uifu_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/954141295093698560/9x68uifu_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/29097819/1516660974", "profile_image_extensions_alt_text": null, "profile_image_extensions_media_color": {"palette": [{"rgb": {"red": 0, "green": 58, "blue": 108}, "percentage": 93.18}, {"rgb": {"red": 243, "green": 247, "blue": 248}, "percentage": 6.21}, {"rgb": {"red": 123, "green": 155, "blue": 180}, "percentage": 0.54}]}, "profile_image_extensions_media_availability": null, "profile_image_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_banner_extensions_alt_text": null, "profile_banner_extensions_media_availability": null, "profile_banner_extensions_media_color": {"palette": [{"rgb": {"red": 109, "green": 147, "blue": 196}, "percentage": 27.51}, {"rgb": {"red": 95, "green": 61, "blue": 32}, "percentage": 19.0}, {"rgb": {"red": 183, "green": 198, "blue": 212}, "percentage": 7.81}, {"rgb": {"red": 150, "green": 96, "blue": 36}, "percentage": 7.3}, {"rgb": {"red": 210, "green": 186, "blue": 148}, "percentage": 7.29}]}, "profile_banner_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_link_color": "00218F", "profile_sidebar_border_color": "FFFFFF", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "3C3940", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": false, "default_profile_image": false, "pinned_tweet_ids": [1418577899142225927], "pinned_tweet_ids_str": ["1418577899142225927"], "has_custom_timelines": false, "can_dm": null, "following": null, "follow_request_sent": null, "notifications": null, "muting": null, "blocking": null, "blocked_by": null, "want_retweets": null, "advertiser_account_type": "promotable_user", "advertiser_account_service_levels": ["mms", "smb", "subscription"], "profile_interstitial_type": "", "business_profile_state": "none", "translator_type": "none", "withheld_in_countries": [], "followed_by": null, "ext": {"highlightedLabel": {"r": {"ok": {}}, "ttl": -1}}, "require_some_consent": false}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:27.480315+02:00", "raw_value": {"id": 755135678422327296, "id_str": "755135678422327296", "name": "Bernie's Tweets", "screen_name": "BernieSpofforth", "location": "North West, England", "description": "Experience in lots of things, including, Board and CEO, FMCG, IP, patents, global manufacturing. Writes the odd article. Balance in all things.", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 70964, "fast_followers_count": 0, "normal_followers_count": 70964, "friends_count": 2566, "listed_count": 292, "created_at": "Mon Jul 18 20:22:30 +0000 2016", "favourites_count": 87086, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 73997, "media_count": 3971, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1444297408410800131/bVZyWU0v_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1444297408410800131/bVZyWU0v_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/755135678422327296/1633175565", "profile_image_extensions_alt_text": null, "profile_image_extensions_media_availability": null, "profile_image_extensions_media_color": {"palette": [{"rgb": {"red": 223, "green": 223, "blue": 223}, "percentage": 64.98}, {"rgb": {"red": 104, "green": 104, "blue": 104}, "percentage": 19.67}, {"rgb": {"red": 34, "green": 34, "blue": 34}, "percentage": 19.09}]}, "profile_image_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_banner_extensions_alt_text": null, "profile_banner_extensions_media_availability": null, "profile_banner_extensions_media_color": {"palette": [{"rgb": {"red": 24, "green": 1, "blue": 1}, "percentage": 32.16}, {"rgb": {"red": 196, "green": 43, "blue": 33}, "percentage": 26.94}, {"rgb": {"red": 77, "green": 10, "blue": 6}, "percentage": 23.86}, {"rgb": {"red": 245, "green": 214, "blue": 209}, "percentage": 9.03}, {"rgb": {"red": 51, "green": 5, "blue": 3}, "percentage": 3.14}]}, "profile_banner_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_link_color": "981CEB", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "has_extended_profile": false, "default_profile": false, "default_profile_image": false, "pinned_tweet_ids": [], "pinned_tweet_ids_str": [], "has_custom_timelines": true, "can_dm": null, "following": null, "follow_request_sent": null, "notifications": null, "muting": null, "blocking": null, "blocked_by": null, "want_retweets": null, "advertiser_account_type": "promotable_user", "advertiser_account_service_levels": ["smb"], "profile_interstitial_type": "", "business_profile_state": "none", "translator_type": "none", "withheld_in_countries": [], "followed_by": null, "ext": {"highlightedLabel": {"r": {"ok": {}}, "ttl": -1}}, "require_some_consent": false}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:27.480452+02:00", "raw_value": {"id": 2717932566, "id_str": "2717932566", "name": "PERRIN", "screen_name": "subversifperrin", "location": "paris", "description": "cash,sans filtre,en spectacle partout en France,https://t.co/YGmatj5OR5", "url": null, "entities": {"description": {"urls": [{"url": "https://t.co/YGmatj5OR5", "expanded_url": "http://olivierperrin.com", "display_url": "olivierperrin.com", "indices": [48, 71]}]}}, "protected": false, "followers_count": 3564, "fast_followers_count": 0, "normal_followers_count": 3564, "friends_count": 4983, "listed_count": 51, "created_at": "Fri Aug 08 20:42:09 +0000 2014", "favourites_count": 2670, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 9841, "media_count": 1406, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1399318653196279815/dm34VvFd_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1399318653196279815/dm34VvFd_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/2717932566/1609424528", "profile_image_extensions_alt_text": null, "profile_image_extensions_media_availability": null, "profile_image_extensions_media_color": {"palette": [{"rgb": {"red": 203, "green": 194, "blue": 197}, "percentage": 15.12}, {"rgb": {"red": 61, "green": 103, "blue": 156}, "percentage": 13.57}, {"rgb": {"red": 58, "green": 50, "blue": 70}, "percentage": 10.42}, {"rgb": {"red": 125, "green": 60, "blue": 74}, "percentage": 5.01}, {"rgb": {"red": 121, "green": 163, "blue": 207}, "percentage": 4.93}]}, "profile_image_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_banner_extensions_media_color": {"palette": [{"rgb": {"red": 197, "green": 179, "blue": 189}, "percentage": 21.69}, {"rgb": {"red": 75, "green": 91, "blue": 137}, "percentage": 20.8}, {"rgb": {"red": 97, "green": 150, "blue": 204}, "percentage": 10.96}, {"rgb": {"red": 63, "green": 52, "blue": 64}, "percentage": 7.27}, {"rgb": {"red": 115, "green": 44, "blue": 59}, "percentage": 4.46}]}, "profile_banner_extensions_alt_text": null, "profile_banner_extensions_media_availability": null, "profile_banner_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": true, "default_profile_image": false, "pinned_tweet_ids": [], "pinned_tweet_ids_str": [], "has_custom_timelines": true, "can_dm": null, "following": null, "follow_request_sent": null, "notifications": null, "muting": null, "blocking": null, "blocked_by": null, "want_retweets": null, "advertiser_account_type": "promotable_user", "advertiser_account_service_levels": ["analytics"], "profile_interstitial_type": "", "business_profile_state": "none", "translator_type": "none", "withheld_in_countries": [], "followed_by": null, "ext": {"highlightedLabel": {"r": {"ok": {}}, "ttl": -1}}, "require_some_consent": false}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:27.480575+02:00", "raw_value": {"id": 1442620217339912197, "id_str": "1442620217339912197", "name": "Honest Blur", "screen_name": "honestblur", "location": "", "description": "", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 1, "fast_followers_count": 0, "normal_followers_count": 1, "friends_count": 0, "listed_count": 0, "created_at": "Mon Sep 27 22:40:58 +0000 2021", "favourites_count": 0, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 83, "media_count": 9, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "F5F8FA", "profile_background_image_url": null, "profile_background_image_url_https": null, "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1442620987061809153/wQ7B5ySV_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1442620987061809153/wQ7B5ySV_normal.jpg", "profile_image_extensions_alt_text": null, "profile_image_extensions_media_availability": null, "profile_image_extensions_media_color": {"palette": [{"rgb": {"red": 56, "green": 55, "blue": 45}, "percentage": 67.24}, {"rgb": {"red": 114, "green": 117, "blue": 98}, "percentage": 27.3}, {"rgb": {"red": 141, "green": 114, "blue": 79}, "percentage": 2.69}, {"rgb": {"red": 197, "green": 206, "blue": 201}, "percentage": 2.15}, {"rgb": {"red": 192, "green": 169, "blue": 137}, "percentage": 0.24}]}, "profile_image_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": true, "default_profile_image": false, "pinned_tweet_ids": [], "pinned_tweet_ids_str": [], "has_custom_timelines": false, "can_dm": null, "following": null, "follow_request_sent": null, "notifications": null, "muting": null, "blocking": null, "blocked_by": null, "want_retweets": null, "advertiser_account_type": "none", "advertiser_account_service_levels": [], "profile_interstitial_type": "", "business_profile_state": "none", "translator_type": "none", "withheld_in_countries": [], "followed_by": null, "ext": {"highlightedLabel": {"r": {"ok": {}}, "ttl": -1}}, "require_some_consent": false}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:27.480775+02:00", "raw_value": {"id": 1320463487257247744, "id_str": "1320463487257247744", "name": "STOPCOMMONPASS.ORG \u274c", "screen_name": "org_scp", "location": "Global", "description": "Vaccine Passports are the New Abnormal.\n\n| Enquiries: stopcommonpass@pm.me\n| https://t.co/QNOUnauTaz", "url": "https://t.co/gMnmRqJyBh", "entities": {"url": {"urls": [{"url": "https://t.co/gMnmRqJyBh", "expanded_url": "https://www.stopcommonpass.org", "display_url": "stopcommonpass.org", "indices": [0, 23]}]}, "description": {"urls": [{"url": "https://t.co/QNOUnauTaz", "expanded_url": "http://buymeacoffee.com/stopcommonpass", "display_url": "buymeacoffee.com/stopcommonpass", "indices": [77, 100]}]}}, "protected": false, "followers_count": 17112, "fast_followers_count": 0, "normal_followers_count": 17112, "friends_count": 390, "listed_count": 50, "created_at": "Sun Oct 25 20:33:33 +0000 2020", "favourites_count": 24841, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 9789, "media_count": 757, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "F5F8FA", "profile_background_image_url": null, "profile_background_image_url_https": null, "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1433036140278435840/-z8LBIGy_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1433036140278435840/-z8LBIGy_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1320463487257247744/1605385558", "profile_image_extensions_alt_text": null, "profile_image_extensions_media_availability": null, "profile_image_extensions_media_color": {"palette": [{"rgb": {"red": 0, "green": 0, "blue": 0}, "percentage": 55.48}, {"rgb": {"red": 247, "green": 247, "blue": 247}, "percentage": 38.6}]}, "profile_image_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_banner_extensions_alt_text": null, "profile_banner_extensions_media_availability": null, "profile_banner_extensions_media_color": {"palette": [{"rgb": {"red": 175, "green": 175, "blue": 175}, "percentage": 66.97}, {"rgb": {"red": 116, "green": 116, "blue": 116}, "percentage": 23.33}, {"rgb": {"red": 53, "green": 53, "blue": 53}, "percentage": 15.24}]}, "profile_banner_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": true, "default_profile_image": false, "pinned_tweet_ids": [1440682104430333952], "pinned_tweet_ids_str": ["1440682104430333952"], "has_custom_timelines": true, "can_dm": null, "following": null, "follow_request_sent": null, "notifications": null, "muting": null, "blocking": null, "blocked_by": null, "want_retweets": null, "advertiser_account_type": "promotable_user", "advertiser_account_service_levels": ["analytics"], "profile_interstitial_type": "", "business_profile_state": "none", "translator_type": "none", "withheld_in_countries": [], "followed_by": null, "ext": {"highlightedLabel": {"r": {"ok": {}}, "ttl": -1}}, "require_some_consent": false}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:27.481030+02:00", "raw_value": {"id": 199793632, "id_str": "199793632", "name": "\ud83d\udd77\ud83d\udc99 \ud83c\uddea\ud83c\uddfa", "screen_name": "sharonpentay", "location": "Here ", "description": "sometimes antisocial but #NeverATory \ud83d\udc99 #WOKE #JohnsonOut #NeverTrustATory #NeverVoteConservative #CorruptConservatives #JohnsonHasFailedTheNation #PATH", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 4715, "fast_followers_count": 0, "normal_followers_count": 4715, "friends_count": 4671, "listed_count": 41, "created_at": "Thu Oct 07 18:58:21 +0000 2010", "favourites_count": 153832, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 178946, "media_count": 7388, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1440256021163745284/AKMICFPM_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1440256021163745284/AKMICFPM_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/199793632/1632904016", "profile_image_extensions_alt_text": null, "profile_image_extensions_media_availability": null, "profile_image_extensions_media_color": {"palette": [{"rgb": {"red": 214, "green": 214, "blue": 224}, "percentage": 93.57}, {"rgb": {"red": 67, "green": 68, "blue": 72}, "percentage": 5.02}]}, "profile_image_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_banner_extensions_alt_text": null, "profile_banner_extensions_media_availability": null, "profile_banner_extensions_media_color": {"palette": [{"rgb": {"red": 210, "green": 210, "blue": 200}, "percentage": 46.66}, {"rgb": {"red": 38, "green": 38, "blue": 37}, "percentage": 45.71}, {"rgb": {"red": 94, "green": 93, "blue": 91}, "percentage": 0.16}]}, "profile_banner_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": true, "default_profile_image": false, "pinned_tweet_ids": [], "pinned_tweet_ids_str": [], "has_custom_timelines": true, "can_dm": null, "following": null, "follow_request_sent": null, "notifications": null, "muting": null, "blocking": null, "blocked_by": null, "want_retweets": null, "advertiser_account_type": "promotable_user", "advertiser_account_service_levels": [], "profile_interstitial_type": "", "business_profile_state": "none", "translator_type": "none", "withheld_in_countries": [], "followed_by": null, "ext": {"highlightedLabel": {"r": {"ok": {}}, "ttl": -1}}, "require_some_consent": false}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:27.481281+02:00", "raw_value": {"id": 1183158347266064384, "id_str": "1183158347266064384", "name": "Western Standard", "screen_name": "WSOnlineNews", "location": "Calgary, Alberta", "description": "The independent voice of the New West. info@westernstandardonline.com. (866) 479-WEST.", "url": "https://t.co/5YD1pkonwK", "entities": {"url": {"urls": [{"url": "https://t.co/5YD1pkonwK", "expanded_url": "http://westernstandardonline.com", "display_url": "westernstandardonline.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 7552, "fast_followers_count": 0, "normal_followers_count": 7552, "friends_count": 164, "listed_count": 43, "created_at": "Sat Oct 12 23:12:00 +0000 2019", "favourites_count": 173, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 5809, "media_count": 291, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "F5F8FA", "profile_background_image_url": null, "profile_background_image_url_https": null, "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1186413491017547776/M5kymPh0_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1186413491017547776/M5kymPh0_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1183158347266064384/1619981366", "profile_image_extensions_alt_text": null, "profile_image_extensions_media_availability": null, "profile_image_extensions_media_color": {"palette": [{"rgb": {"red": 255, "green": 255, "blue": 255}, "percentage": 76.28}, {"rgb": {"red": 0, "green": 0, "blue": 0}, "percentage": 12.62}, {"rgb": {"red": 242, "green": 36, "blue": 38}, "percentage": 8.72}, {"rgb": {"red": 246, "green": 175, "blue": 174}, "percentage": 0.87}, {"rgb": {"red": 229, "green": 88, "blue": 99}, "percentage": 0.57}]}, "profile_image_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_banner_extensions_alt_text": null, "profile_banner_extensions_media_availability": null, "profile_banner_extensions_media_color": {"palette": [{"rgb": {"red": 229, "green": 230, "blue": 234}, "percentage": 60.81}, {"rgb": {"red": 71, "green": 68, "blue": 63}, "percentage": 15.23}, {"rgb": {"red": 127, "green": 102, "blue": 78}, "percentage": 3.63}, {"rgb": {"red": 218, "green": 56, "blue": 71}, "percentage": 2.58}, {"rgb": {"red": 209, "green": 106, "blue": 119}, "percentage": 2.05}]}, "profile_banner_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": true, "default_profile_image": false, "pinned_tweet_ids": [1405646595144654848], "pinned_tweet_ids_str": ["1405646595144654848"], "has_custom_timelines": false, "can_dm": null, "following": null, "follow_request_sent": null, "notifications": null, "muting": null, "blocking": null, "blocked_by": null, "want_retweets": null, "advertiser_account_type": "promotable_user", "advertiser_account_service_levels": ["analytics"], "profile_interstitial_type": "", "business_profile_state": "none", "translator_type": "none", "withheld_in_countries": [], "followed_by": null, "ext": {"highlightedLabel": {"r": {"ok": {}}, "ttl": -1}}, "require_some_consent": false}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:27.481450+02:00", "raw_value": {"id": 1441495817580318720, "id_str": "1441495817580318720", "name": "George", "screen_name": "georgehawk26", "location": "We out here", "description": "Oops.. was that supposed to be private? PSA-Don\u2019t brag about a fake vaccine card. See pinned tweet. #notarealhawk", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 8, "fast_followers_count": 0, "normal_followers_count": 8, "friends_count": 43, "listed_count": 0, "created_at": "Fri Sep 24 20:12:58 +0000 2021", "favourites_count": 5, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 101, "media_count": 41, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "F5F8FA", "profile_background_image_url": null, "profile_background_image_url_https": null, "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1448503200156372992/i-BwxhG9_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1448503200156372992/i-BwxhG9_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1441495817580318720/1632838384", "profile_image_extensions_media_color": {"palette": [{"rgb": {"red": 103, "green": 157, "blue": 70}, "percentage": 35.55}, {"rgb": {"red": 92, "green": 87, "blue": 93}, "percentage": 23.03}, {"rgb": {"red": 191, "green": 187, "blue": 190}, "percentage": 12.94}, {"rgb": {"red": 119, "green": 155, "blue": 113}, "percentage": 11.11}, {"rgb": {"red": 99, "green": 164, "blue": 40}, "percentage": 3.65}]}, "profile_image_extensions_alt_text": null, "profile_image_extensions_media_availability": null, "profile_image_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_banner_extensions_media_color": {"palette": [{"rgb": {"red": 150, "green": 157, "blue": 163}, "percentage": 37.35}, {"rgb": {"red": 51, "green": 52, "blue": 51}, "percentage": 18.15}, {"rgb": {"red": 193, "green": 180, "blue": 104}, "percentage": 8.83}, {"rgb": {"red": 220, "green": 169, "blue": 77}, "percentage": 4.29}, {"rgb": {"red": 114, "green": 98, "blue": 49}, "percentage": 4.07}]}, "profile_banner_extensions_alt_text": null, "profile_banner_extensions_media_availability": null, "profile_banner_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": true, "default_profile_image": false, "pinned_tweet_ids": [1442670846619922438], "pinned_tweet_ids_str": ["1442670846619922438"], "has_custom_timelines": false, "can_dm": null, "following": null, "follow_request_sent": null, "notifications": null, "muting": null, "blocking": null, "blocked_by": null, "want_retweets": null, "advertiser_account_type": "none", "advertiser_account_service_levels": [], "profile_interstitial_type": "", "business_profile_state": "none", "translator_type": "none", "withheld_in_countries": [], "followed_by": null, "ext": {"highlightedLabel": {"r": {"ok": {}}, "ttl": -1}}, "require_some_consent": false}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:27.481577+02:00", "raw_value": {"id": 1444885267156897792, "id_str": "1444885267156897792", "name": "Modern Mahapurush", "screen_name": "mahapurush007", "location": "New Delhi, India", "description": "Technocrat, Futuristic, Pro-Hindutva, Pro-India", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 8, "fast_followers_count": 0, "normal_followers_count": 8, "friends_count": 618, "listed_count": 0, "created_at": "Mon Oct 04 04:41:17 +0000 2021", "favourites_count": 1049, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 749, "media_count": 54, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "F5F8FA", "profile_background_image_url": null, "profile_background_image_url_https": null, "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1444892442528927749/RpfFAe9-_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1444892442528927749/RpfFAe9-_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1444885267156897792/1633322776", "profile_image_extensions_alt_text": null, "profile_image_extensions_media_color": {"palette": [{"rgb": {"red": 234, "green": 88, "blue": 122}, "percentage": 48.16}, {"rgb": {"red": 194, "green": 115, "blue": 157}, "percentage": 27.78}, {"rgb": {"red": 6, "green": 3, "blue": 4}, "percentage": 15.5}, {"rgb": {"red": 180, "green": 128, "blue": 177}, "percentage": 4.07}, {"rgb": {"red": 91, "green": 39, "blue": 53}, "percentage": 1.21}]}, "profile_image_extensions_media_availability": null, "profile_image_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_banner_extensions_alt_text": null, "profile_banner_extensions_media_availability": null, "profile_banner_extensions_media_color": {"palette": [{"rgb": {"red": 87, "green": 107, "blue": 109}, "percentage": 53.02}, {"rgb": {"red": 147, "green": 170, "blue": 187}, "percentage": 16.3}, {"rgb": {"red": 108, "green": 123, "blue": 82}, "percentage": 15.48}, {"rgb": {"red": 83, "green": 111, "blue": 137}, "percentage": 6.5}, {"rgb": {"red": 41, "green": 45, "blue": 46}, "percentage": 2.33}]}, "profile_banner_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": true, "default_profile_image": false, "pinned_tweet_ids": [1448343173386813443], "pinned_tweet_ids_str": ["1448343173386813443"], "has_custom_timelines": true, "can_dm": null, "following": null, "follow_request_sent": null, "notifications": null, "muting": null, "blocking": null, "blocked_by": null, "want_retweets": null, "advertiser_account_type": "none", "advertiser_account_service_levels": [], "profile_interstitial_type": "", "business_profile_state": "none", "translator_type": "none", "withheld_in_countries": [], "followed_by": null, "ext": {"highlightedLabel": {"r": {"ok": {}}, "ttl": -1}}, "require_some_consent": false}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:27.481740+02:00", "raw_value": {"id": 150466727, "id_str": "150466727", "name": "David Gardiner", "screen_name": "WriteWithDave", "location": "Cairns, Qld, Aust", "description": "Writer, media watcher, chef, blues & jazz bass player. Blocked by the country's 'leader'. Still trying to find the wings on buffalo.\ud83d\ude0e", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 3655, "fast_followers_count": 0, "normal_followers_count": 3655, "friends_count": 5000, "listed_count": 35, "created_at": "Tue Jun 01 00:52:45 +0000 2010", "favourites_count": 51498, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 29126, "media_count": 645, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme5/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme5/bg.gif", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1039752432455217155/JjqxWrpX_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1039752432455217155/JjqxWrpX_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/150466727/1500433116", "profile_image_extensions_media_color": {"palette": [{"rgb": {"red": 12, "green": 9, "blue": 18}, "percentage": 28.83}, {"rgb": {"red": 230, "green": 222, "blue": 208}, "percentage": 25.73}, {"rgb": {"red": 206, "green": 146, "blue": 143}, "percentage": 20.29}, {"rgb": {"red": 127, "green": 49, "blue": 39}, "percentage": 6.76}, {"rgb": {"red": 196, "green": 214, "blue": 227}, "percentage": 3.25}]}, "profile_image_extensions_alt_text": null, "profile_image_extensions_media_availability": null, "profile_image_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_banner_extensions_alt_text": null, "profile_banner_extensions_media_availability": null, "profile_banner_extensions_media_color": {"palette": [{"rgb": {"red": 73, "green": 71, "blue": 55}, "percentage": 32.29}, {"rgb": {"red": 79, "green": 105, "blue": 112}, "percentage": 22.66}, {"rgb": {"red": 148, "green": 111, "blue": 66}, "percentage": 18.95}, {"rgb": {"red": 127, "green": 125, "blue": 123}, "percentage": 18.02}, {"rgb": {"red": 84, "green": 73, "blue": 23}, "percentage": 2.0}]}, "profile_banner_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_link_color": "19CF86", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "pinned_tweet_ids": [], "pinned_tweet_ids_str": [], "has_custom_timelines": true, "can_dm": null, "following": null, "follow_request_sent": null, "notifications": null, "muting": null, "blocking": null, "blocked_by": null, "want_retweets": null, "advertiser_account_type": "promotable_user", "advertiser_account_service_levels": ["analytics"], "profile_interstitial_type": "", "business_profile_state": "none", "translator_type": "none", "withheld_in_countries": [], "followed_by": null, "ext": {"highlightedLabel": {"r": {"ok": {}}, "ttl": -1}}, "require_some_consent": false}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:27.481926+02:00", "raw_value": {"id": 728206333485285377, "id_str": "728206333485285377", "name": "Biswaranjan Pattnaik \ud83c\uddee\ud83c\uddf3", "screen_name": "iamPattnaik", "location": "India", "description": "An Indian Chartered Accountant. Writes and speaks on issues relating to taxation, company affairs, banking, and credit policy. RTs are not endorsements.", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 14, "fast_followers_count": 0, "normal_followers_count": 14, "friends_count": 92, "listed_count": 4, "created_at": "Thu May 05 12:54:54 +0000 2016", "favourites_count": 715, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 1793, "media_count": 51, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "F5F8FA", "profile_background_image_url": null, "profile_background_image_url_https": null, "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1068788978948567042/TMkzlqLx_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1068788978948567042/TMkzlqLx_normal.jpg", "profile_image_extensions_alt_text": null, "profile_image_extensions_media_availability": null, "profile_image_extensions_media_color": {"palette": [{"rgb": {"red": 219, "green": 225, "blue": 225}, "percentage": 45.82}, {"rgb": {"red": 178, "green": 59, "blue": 91}, "percentage": 30.8}, {"rgb": {"red": 160, "green": 90, "blue": 78}, "percentage": 12.1}, {"rgb": {"red": 41, "green": 39, "blue": 42}, "percentage": 3.0}, {"rgb": {"red": 226, "green": 167, "blue": 161}, "percentage": 2.73}]}, "profile_image_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": true, "default_profile_image": false, "pinned_tweet_ids": [], "pinned_tweet_ids_str": [], "has_custom_timelines": true, "can_dm": null, "following": null, "follow_request_sent": null, "notifications": null, "muting": null, "blocking": null, "blocked_by": null, "want_retweets": null, "advertiser_account_type": "promotable_user", "advertiser_account_service_levels": ["analytics"], "profile_interstitial_type": "", "business_profile_state": "none", "translator_type": "none", "withheld_in_countries": [], "followed_by": null, "ext": {"highlightedLabel": {"r": {"ok": {}}, "ttl": -1}}, "require_some_consent": false}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:27.482065+02:00", "raw_value": {"id": 2907314007, "id_str": "2907314007", "name": "Liberty to Ourselves & our\u00a0Posterity\ud83c\uddfa\ud83c\uddf8", "screen_name": "OklahomaOilman", "location": "Tulsa, OK (Oil Capital)", "description": "God\u271d\ufe0f, Family, & Country\ud83c\uddfa\ud83c\uddf8 Drill DEEPER\ud83d\udd27 #2a, ALL Lives Matter\u203cBuy Made in America #MAGA \ud83e\udd85I Believe JESUS LIVES", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 2929, "fast_followers_count": 0, "normal_followers_count": 2929, "friends_count": 3649, "listed_count": 1, "created_at": "Sat Dec 06 05:47:46 +0000 2014", "favourites_count": 43428, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 48670, "media_count": 4979, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1357503746641649666/GM7a-kkZ_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1357503746641649666/GM7a-kkZ_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/2907314007/1612148079", "profile_image_extensions_alt_text": null, "profile_image_extensions_media_availability": null, "profile_image_extensions_media_color": {"palette": [{"rgb": {"red": 181, "green": 178, "blue": 150}, "percentage": 55.76}, {"rgb": {"red": 34, "green": 45, "blue": 48}, "percentage": 42.01}, {"rgb": {"red": 93, "green": 95, "blue": 69}, "percentage": 1.57}]}, "profile_image_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_banner_extensions_alt_text": null, "profile_banner_extensions_media_availability": null, "profile_banner_extensions_media_color": {"palette": [{"rgb": {"red": 9, "green": 97, "blue": 223}, "percentage": 51.67}, {"rgb": {"red": 6, "green": 133, "blue": 233}, "percentage": 22.33}, {"rgb": {"red": 7, "green": 5, "blue": 9}, "percentage": 14.46}, {"rgb": {"red": 18, "green": 58, "blue": 104}, "percentage": 3.92}, {"rgb": {"red": 13, "green": 67, "blue": 199}, "percentage": 3.0}]}, "profile_banner_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": true, "default_profile_image": false, "pinned_tweet_ids": [1351882398519218178], "pinned_tweet_ids_str": ["1351882398519218178"], "has_custom_timelines": false, "can_dm": null, "following": null, "follow_request_sent": null, "notifications": null, "muting": null, "blocking": null, "blocked_by": null, "want_retweets": null, "advertiser_account_type": "promotable_user", "advertiser_account_service_levels": [], "profile_interstitial_type": "", "business_profile_state": "none", "translator_type": "none", "withheld_in_countries": [], "followed_by": null, "ext": {"highlightedLabel": {"r": {"ok": {}}, "ttl": -1}}, "require_some_consent": false}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:27.482195+02:00", "raw_value": {"id": 23622484, "id_str": "23622484", "name": "Paul Fillingham", "screen_name": "paulfillingham", "location": "England, United Kingdom", "description": "Creative Technologist #designthinking #UX #businesstransformation #customerexperience #futurologist founder: Thinkamigo Digital", "url": "https://t.co/XPqqVNL43X", "entities": {"url": {"urls": [{"url": "https://t.co/XPqqVNL43X", "expanded_url": "http://www.thinkamigo.com", "display_url": "thinkamigo.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 982, "fast_followers_count": 0, "normal_followers_count": 982, "friends_count": 2780, "listed_count": 43, "created_at": "Tue Mar 10 17:47:30 +0000 2009", "favourites_count": 6212, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 4039, "media_count": 441, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme6/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme6/bg.gif", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1037820633818779648/ypS0fqFL_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1037820633818779648/ypS0fqFL_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/23622484/1458732336", "profile_image_extensions_alt_text": null, "profile_image_extensions_media_availability": null, "profile_image_extensions_media_color": {"palette": [{"rgb": {"red": 193, "green": 193, "blue": 193}, "percentage": 42.1}, {"rgb": {"red": 184, "green": 189, "blue": 227}, "percentage": 22.87}, {"rgb": {"red": 69, "green": 51, "blue": 47}, "percentage": 8.67}, {"rgb": {"red": 161, "green": 93, "blue": 70}, "percentage": 8.31}, {"rgb": {"red": 195, "green": 177, "blue": 157}, "percentage": 3.69}]}, "profile_image_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_banner_extensions_alt_text": null, "profile_banner_extensions_media_availability": null, "profile_banner_extensions_media_color": {"palette": [{"rgb": {"red": 3, "green": 4, "blue": 2}, "percentage": 75.89}, {"rgb": {"red": 75, "green": 64, "blue": 26}, "percentage": 6.74}, {"rgb": {"red": 183, "green": 188, "blue": 188}, "percentage": 3.29}, {"rgb": {"red": 7, "green": 19, "blue": 59}, "percentage": 2.34}, {"rgb": {"red": 81, "green": 36, "blue": 23}, "percentage": 1.05}]}, "profile_banner_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_link_color": "3B94D9", "profile_sidebar_border_color": "FFFFFF", "profile_sidebar_fill_color": "B7C5C9", "profile_text_color": "333333", "profile_use_background_image": false, "has_extended_profile": false, "default_profile": false, "default_profile_image": false, "pinned_tweet_ids": [], "pinned_tweet_ids_str": [], "has_custom_timelines": true, "can_dm": null, "following": null, "follow_request_sent": null, "notifications": null, "muting": null, "blocking": null, "blocked_by": null, "want_retweets": null, "advertiser_account_type": "promotable_user", "advertiser_account_service_levels": ["analytics"], "profile_interstitial_type": "", "business_profile_state": "none", "translator_type": "none", "withheld_in_countries": [], "followed_by": null, "ext": {"highlightedLabel": {"r": {"ok": {}}, "ttl": -1}}, "require_some_consent": false}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:27.482355+02:00", "raw_value": {"id": 1436719439982960643, "id_str": "1436719439982960643", "name": "Saleem Sheikh", "screen_name": "SaleemS99103534", "location": "", "description": "", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 363, "fast_followers_count": 0, "normal_followers_count": 363, "friends_count": 47, "listed_count": 0, "created_at": "Sat Sep 11 15:53:27 +0000 2021", "favourites_count": 117, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 180, "media_count": 26, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "F5F8FA", "profile_background_image_url": null, "profile_background_image_url_https": null, "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1439844425341886464/KgNOM0Yz_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1439844425341886464/KgNOM0Yz_normal.jpg", "profile_image_extensions_alt_text": null, "profile_image_extensions_media_availability": null, "profile_image_extensions_media_color": {"palette": [{"rgb": {"red": 255, "green": 255, "blue": 255}, "percentage": 93.96}, {"rgb": {"red": 33, "green": 41, "blue": 43}, "percentage": 3.06}, {"rgb": {"red": 181, "green": 126, "blue": 131}, "percentage": 1.67}, {"rgb": {"red": 142, "green": 54, "blue": 59}, "percentage": 0.62}]}, "profile_image_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": true, "default_profile_image": false, "pinned_tweet_ids": [], "pinned_tweet_ids_str": [], "has_custom_timelines": true, "can_dm": null, "following": null, "follow_request_sent": null, "notifications": null, "muting": null, "blocking": null, "blocked_by": null, "want_retweets": null, "advertiser_account_type": "none", "advertiser_account_service_levels": [], "profile_interstitial_type": "", "business_profile_state": "none", "translator_type": "none", "withheld_in_countries": [], "followed_by": null, "ext": {"highlightedLabel": {"r": {"ok": {}}, "ttl": -1}}, "require_some_consent": false}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:27.482509+02:00", "raw_value": {"id": 24073436, "id_str": "24073436", "name": "The Truth be told \ud83d\ude44", "screen_name": "OhBlondie66", "location": "San Francisco, CA", "description": "Do you hear the people sing? \nSinging a song of angry men?\nIt is the music of the people\nwho will never be slaves again...Do you hear?", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 536, "fast_followers_count": 0, "normal_followers_count": 536, "friends_count": 431, "listed_count": 0, "created_at": "Thu Mar 12 23:44:45 +0000 2009", "favourites_count": 9698, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 17077, "media_count": 370, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1337317308604112897/v2CrVWIN_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1337317308604112897/v2CrVWIN_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/24073436/1588528879", "profile_image_extensions_alt_text": null, "profile_image_extensions_media_availability": null, "profile_image_extensions_media_color": {"palette": [{"rgb": {"red": 174, "green": 126, "blue": 98}, "percentage": 69.77}, {"rgb": {"red": 98, "green": 66, "blue": 42}, "percentage": 11.93}, {"rgb": {"red": 153, "green": 92, "blue": 43}, "percentage": 7.08}, {"rgb": {"red": 180, "green": 155, "blue": 130}, "percentage": 6.92}, {"rgb": {"red": 220, "green": 181, "blue": 152}, "percentage": 1.36}]}, "profile_image_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_banner_extensions_media_color": {"palette": [{"rgb": {"red": 193, "green": 12, "blue": 8}, "percentage": 74.67}, {"rgb": {"red": 202, "green": 174, "blue": 146}, "percentage": 13.72}, {"rgb": {"red": 193, "green": 84, "blue": 71}, "percentage": 7.89}, {"rgb": {"red": 201, "green": 132, "blue": 112}, "percentage": 3.16}, {"rgb": {"red": 191, "green": 188, "blue": 156}, "percentage": 0.67}]}, "profile_banner_extensions_alt_text": null, "profile_banner_extensions_media_availability": null, "profile_banner_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": true, "default_profile_image": false, "pinned_tweet_ids": [1431014939431292930], "pinned_tweet_ids_str": ["1431014939431292930"], "has_custom_timelines": true, "can_dm": null, "following": null, "follow_request_sent": null, "notifications": null, "muting": null, "blocking": null, "blocked_by": null, "want_retweets": null, "advertiser_account_type": "promotable_user", "advertiser_account_service_levels": ["analytics"], "profile_interstitial_type": "", "business_profile_state": "none", "translator_type": "none", "withheld_in_countries": [], "followed_by": null, "ext": {"highlightedLabel": {"r": {"ok": {}}, "ttl": -1}}, "require_some_consent": false}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:27.482642+02:00", "raw_value": {"id": 1876175636, "id_str": "1876175636", "name": "Adam Sexton", "screen_name": "AdamSextonWMUR", "location": "New Hampshire", "description": "@WMUR9 Political Director. Host, CloseUp NH. Proud Husband of @603Amanda; Dada to Ham & Sock. Mostly #nhpolitics & #FITN here. @49ers & @Mariners fan.", "url": "https://t.co/Mc5FvmTr3o", "entities": {"url": {"urls": [{"url": "https://t.co/Mc5FvmTr3o", "expanded_url": "http://www.wmur.com/politics", "display_url": "wmur.com/politics", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 9318, "fast_followers_count": 0, "normal_followers_count": 9318, "friends_count": 2204, "listed_count": 217, "created_at": "Tue Sep 17 16:55:36 +0000 2013", "favourites_count": 5936, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": true, "statuses_count": 9965, "media_count": 3452, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/769267805204209664/uKORZy-T_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/769267805204209664/uKORZy-T_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1876175636/1583681600", "profile_image_extensions_alt_text": null, "profile_image_extensions_media_availability": null, "profile_image_extensions_media_color": {"palette": [{"rgb": {"red": 38, "green": 43, "blue": 44}, "percentage": 51.9}, {"rgb": {"red": 177, "green": 212, "blue": 240}, "percentage": 25.49}, {"rgb": {"red": 86, "green": 62, "blue": 61}, "percentage": 8.29}, {"rgb": {"red": 63, "green": 80, "blue": 56}, "percentage": 5.84}, {"rgb": {"red": 163, "green": 145, "blue": 132}, "percentage": 2.08}]}, "profile_image_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_banner_extensions_alt_text": null, "profile_banner_extensions_media_color": {"palette": [{"rgb": {"red": 63, "green": 112, "blue": 19}, "percentage": 13.03}, {"rgb": {"red": 70, "green": 96, "blue": 83}, "percentage": 8.7}, {"rgb": {"red": 172, "green": 153, "blue": 46}, "percentage": 8.61}, {"rgb": {"red": 109, "green": 112, "blue": 56}, "percentage": 8.12}, {"rgb": {"red": 218, "green": 95, "blue": 57}, "percentage": 4.23}]}, "profile_banner_extensions_media_availability": null, "profile_banner_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": true, "default_profile_image": false, "pinned_tweet_ids": [], "pinned_tweet_ids_str": [], "has_custom_timelines": false, "can_dm": null, "following": null, "follow_request_sent": null, "notifications": null, "muting": null, "blocking": null, "blocked_by": null, "want_retweets": null, "advertiser_account_type": "promotable_user", "advertiser_account_service_levels": ["analytics"], "profile_interstitial_type": "", "business_profile_state": "none", "translator_type": "none", "withheld_in_countries": [], "followed_by": null, "ext": {"highlightedLabel": {"r": {"ok": {}}, "ttl": -1}}, "require_some_consent": false}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:27.482852+02:00", "raw_value": {"id": 4656772816, "id_str": "4656772816", "name": "Anne-Marie #Together\u2763\ufe0f", "screen_name": "AnneMar45451941", "location": "England, United Kingdom", "description": "\"stop worrying about death & worry about if your going to be free or not\" Catherine Austin Fitts", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 1810, "fast_followers_count": 0, "normal_followers_count": 1810, "friends_count": 991, "listed_count": 4, "created_at": "Wed Dec 30 19:05:03 +0000 2015", "favourites_count": 26149, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 57152, "media_count": 10468, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1448216597802389506/bAncMYfS_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1448216597802389506/bAncMYfS_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/4656772816/1605394520", "profile_image_extensions_alt_text": null, "profile_image_extensions_media_availability": null, "profile_image_extensions_media_color": {"palette": [{"rgb": {"red": 255, "green": 255, "blue": 255}, "percentage": 60.42}, {"rgb": {"red": 211, "green": 3, "blue": 21}, "percentage": 18.12}, {"rgb": {"red": 8, "green": 5, "blue": 6}, "percentage": 14.79}, {"rgb": {"red": 73, "green": 6, "blue": 10}, "percentage": 2.17}, {"rgb": {"red": 186, "green": 40, "blue": 59}, "percentage": 1.41}]}, "profile_image_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_banner_extensions_media_color": {"palette": [{"rgb": {"red": 30, "green": 36, "blue": 43}, "percentage": 78.98}, {"rgb": {"red": 171, "green": 173, "blue": 177}, "percentage": 13.83}, {"rgb": {"red": 93, "green": 99, "blue": 111}, "percentage": 1.8}]}, "profile_banner_extensions_alt_text": null, "profile_banner_extensions_media_availability": null, "profile_banner_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_link_color": "1B95E0", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "has_extended_profile": false, "default_profile": false, "default_profile_image": false, "pinned_tweet_ids": [1304718072629075968], "pinned_tweet_ids_str": ["1304718072629075968"], "has_custom_timelines": true, "can_dm": null, "following": null, "follow_request_sent": null, "notifications": null, "muting": null, "blocking": null, "blocked_by": null, "want_retweets": null, "advertiser_account_type": "none", "advertiser_account_service_levels": [], "profile_interstitial_type": "", "business_profile_state": "none", "translator_type": "none", "withheld_in_countries": [], "followed_by": null, "ext": {"highlightedLabel": {"r": {"ok": {}}, "ttl": -1}}, "require_some_consent": false}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:27.483010+02:00", "raw_value": {"id": 240130613, "id_str": "240130613", "name": "Mitch McCann", "screen_name": "MitchMcCannNZ", "location": "Auckland, New Zealand", "description": "TV3 New Zealand. @NewshubNZ", "url": "https://t.co/zSjEqMAVS4", "entities": {"url": {"urls": [{"url": "https://t.co/zSjEqMAVS4", "expanded_url": "http://www.newshub.co.nz/home/author-pages/mitch-mccann.html", "display_url": "newshub.co.nz/home/author-pa\u2026", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 2418, "fast_followers_count": 0, "normal_followers_count": 2418, "friends_count": 4279, "listed_count": 32, "created_at": "Wed Jan 19 06:36:50 +0000 2011", "favourites_count": 15228, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": true, "statuses_count": 3795, "media_count": 328, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "0F0203", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1307940348912521217/--XlWbrT_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1307940348912521217/--XlWbrT_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/240130613/1630830783", "profile_image_extensions_alt_text": null, "profile_image_extensions_media_availability": null, "profile_image_extensions_media_color": {"palette": [{"rgb": {"red": 240, "green": 241, "blue": 246}, "percentage": 58.29}, {"rgb": {"red": 44, "green": 51, "blue": 80}, "percentage": 31.48}, {"rgb": {"red": 174, "green": 177, "blue": 199}, "percentage": 3.16}, {"rgb": {"red": 64, "green": 50, "blue": 47}, "percentage": 1.78}, {"rgb": {"red": 199, "green": 146, "blue": 122}, "percentage": 1.75}]}, "profile_image_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_banner_extensions_alt_text": null, "profile_banner_extensions_media_color": {"palette": [{"rgb": {"red": 206, "green": 207, "blue": 208}, "percentage": 26.76}, {"rgb": {"red": 70, "green": 61, "blue": 62}, "percentage": 26.0}, {"rgb": {"red": 78, "green": 74, "blue": 40}, "percentage": 16.68}, {"rgb": {"red": 156, "green": 93, "blue": 91}, "percentage": 5.56}, {"rgb": {"red": 61, "green": 48, "blue": 76}, "percentage": 3.54}]}, "profile_banner_extensions_media_availability": null, "profile_banner_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_link_color": "FF691F", "profile_sidebar_border_color": "FFFFFF", "profile_sidebar_fill_color": "20EB0E", "profile_text_color": "F50505", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "pinned_tweet_ids": [1162132555153301504], "pinned_tweet_ids_str": ["1162132555153301504"], "has_custom_timelines": true, "can_dm": null, "following": null, "follow_request_sent": null, "notifications": null, "muting": null, "blocking": null, "blocked_by": null, "want_retweets": null, "advertiser_account_type": "promotable_user", "advertiser_account_service_levels": [], "profile_interstitial_type": "", "business_profile_state": "none", "translator_type": "none", "withheld_in_countries": [], "followed_by": null, "ext": {"highlightedLabel": {"r": {"ok": {}}, "ttl": -1}}, "require_some_consent": false}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:27.483144+02:00", "raw_value": {"id": 15872418, "id_str": "15872418", "name": "ABS-CBN News", "screen_name": "ABSCBNNews", "location": "Manila, Philippines", "description": "Stories, video, and multimedia for Filipinos worldwide, from ABS-CBN News and Current Affairs, the Philippines' most trusted news organization.", "url": "https://t.co/op1sHJnd8K", "entities": {"url": {"urls": [{"url": "https://t.co/op1sHJnd8K", "expanded_url": "http://news.abs-cbn.com", "display_url": "news.abs-cbn.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 7664066, "fast_followers_count": 0, "normal_followers_count": 7664066, "friends_count": 1063, "listed_count": 8038, "created_at": "Sat Aug 16 10:09:33 +0000 2008", "favourites_count": 1175, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": true, "statuses_count": 925761, "media_count": 202393, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1414904727674920961/aRgHKXj5_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1414904727674920961/aRgHKXj5_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15872418/1620199232", "profile_image_extensions_alt_text": null, "profile_image_extensions_media_availability": null, "profile_image_extensions_media_color": {"palette": [{"rgb": {"red": 254, "green": 254, "blue": 254}, "percentage": 49.3}, {"rgb": {"red": 204, "green": 23, "blue": 42}, "percentage": 19.2}, {"rgb": {"red": 3, "green": 141, "blue": 54}, "percentage": 13.9}, {"rgb": {"red": 2, "green": 69, "blue": 142}, "percentage": 6.36}, {"rgb": {"red": 36, "green": 30, "blue": 32}, "percentage": 3.12}]}, "profile_image_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_banner_extensions_alt_text": null, "profile_banner_extensions_media_availability": null, "profile_banner_extensions_media_color": {"palette": [{"rgb": {"red": 250, "green": 251, "blue": 254}, "percentage": 89.55}, {"rgb": {"red": 48, "green": 122, "blue": 181}, "percentage": 3.89}, {"rgb": {"red": 236, "green": 122, "blue": 129}, "percentage": 1.8}, {"rgb": {"red": 164, "green": 213, "blue": 184}, "percentage": 1.69}, {"rgb": {"red": 99, "green": 180, "blue": 135}, "percentage": 0.71}]}, "profile_banner_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_link_color": "006BB3", "profile_sidebar_border_color": "FFFFFF", "profile_sidebar_fill_color": "CACACE", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": false, "default_profile_image": false, "pinned_tweet_ids": [], "pinned_tweet_ids_str": [], "has_custom_timelines": true, "can_dm": null, "following": null, "follow_request_sent": null, "notifications": null, "muting": null, "blocking": null, "blocked_by": null, "want_retweets": null, "advertiser_account_type": "promotable_user", "advertiser_account_service_levels": ["mms", "media_studio"], "profile_interstitial_type": "", "business_profile_state": "none", "translator_type": "regular", "withheld_in_countries": [], "followed_by": null, "ext": {"highlightedLabel": {"r": {"ok": {}}, "ttl": -1}}, "require_some_consent": false}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:27.483384+02:00", "raw_value": {"id": 107223068, "id_str": "107223068", "name": "Margareta Windisch", "screen_name": "RebelGretel", "location": "Naarm/Melbourne, Australia ", "description": "urban heatwave research, opinions are my own, RTs are not endorsements, she/her and nope...I don't believe in capitalism", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 762, "fast_followers_count": 0, "normal_followers_count": 762, "friends_count": 977, "listed_count": 19, "created_at": "Thu Jan 21 22:11:20 +0000 2010", "favourites_count": 6396, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 7685, "media_count": 676, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "BADFCD", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme12/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme12/bg.gif", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/582696193794293760/LHC3h0vI_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/582696193794293760/LHC3h0vI_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/107223068/1526002726", "profile_image_extensions_alt_text": null, "profile_image_extensions_media_availability": null, "profile_image_extensions_media_color": {"palette": [{"rgb": {"red": 13, "green": 6, "blue": 18}, "percentage": 37.3}, {"rgb": {"red": 238, "green": 241, "blue": 242}, "percentage": 18.62}, {"rgb": {"red": 20, "green": 60, "blue": 119}, "percentage": 8.13}, {"rgb": {"red": 45, "green": 75, "blue": 57}, "percentage": 6.16}, {"rgb": {"red": 235, "green": 201, "blue": 18}, "percentage": 5.49}]}, "profile_image_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_banner_extensions_alt_text": null, "profile_banner_extensions_media_availability": null, "profile_banner_extensions_media_color": {"palette": [{"rgb": {"red": 249, "green": 140, "blue": 65}, "percentage": 29.71}, {"rgb": {"red": 247, "green": 210, "blue": 119}, "percentage": 23.11}, {"rgb": {"red": 221, "green": 41, "blue": 40}, "percentage": 12.63}, {"rgb": {"red": 32, "green": 22, "blue": 29}, "percentage": 7.21}, {"rgb": {"red": 245, "green": 239, "blue": 177}, "percentage": 5.23}]}, "profile_banner_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_link_color": "FF0000", "profile_sidebar_border_color": "F2E195", "profile_sidebar_fill_color": "FFF7CC", "profile_text_color": "0C3E53", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": false, "default_profile_image": false, "pinned_tweet_ids": [], "pinned_tweet_ids_str": [], "has_custom_timelines": true, "can_dm": null, "following": null, "follow_request_sent": null, "notifications": null, "muting": null, "blocking": null, "blocked_by": null, "want_retweets": null, "advertiser_account_type": "none", "advertiser_account_service_levels": [], "profile_interstitial_type": "", "business_profile_state": "none", "translator_type": "none", "withheld_in_countries": [], "followed_by": null, "ext": {"highlightedLabel": {"r": {"ok": {}}, "ttl": -1}}, "require_some_consent": false}}
last_scrap_zero False is_cursor True
need_guest_token True
run request RequestDetails(http_method=<HttpMethod.GET: 1>, url='https://twitter.com/i/api/2/search/adaptive.json', headers={'Authorization': 'Bearer AAAAAAAAAAAAAAAAAAAAANRILgAAAAAAnNwIzUejRCOuH5E6I8xnZz4puTs%3D1Zv7ttfk8LF81IUq16cHjhLTvJu4FA33AGWWjCpTnA', 'x-guest-token': '1448607857604272138'}, params={'include_profile_interstitial_type': '1', 'include_blocking': '1', 'include_blocked_by': '1', 'include_followed_by': '1', 'include_want_retweets': '1', 'include_mute_edge': '1', 'include_can_dm': '1', 'include_can_media_tag': '1', 'skip_status': '1', 'cards_platform': 'Web-12', 'include_cards': '1', 'include_ext_alt_text': 'true', 'include_quote_count': 'true', 'include_reply_count': '1', 'tweet_mode': 'extended', 'include_entities': 'true', 'include_user_entities': 'true', 'include_ext_media_color': 'true', 'include_ext_media_availability': 'true', 'send_error_codes': 'true', 'simple_quoted_tweet': 'true', 'q': '#covid19', 'count': 20, 'query_source': 'typed_query', 'pc': '1', 'spelling_corrections': '1', 'ext': 'mediaStats,highlightedLabel,voiceInfo', 'cursor': 'scroll:thGAVUV0VFVBYBFoCUsq31n6iaKBIYzAUAAAAALo2zCAAAAGQAAAAAAAAVfAAAAAcAAABWIEQAAAAiAQEIQEYEDEAQADCAAEEACAAAAAEBgAAAgQCJQAgAAIBJgDEAlAAACAADCgAMEAAAIQAAAggggWRCCISQEgmkBAAACCApYAEAAAEAAAKCEEkAAAAAAAAtARCCBFAQAgABAIAgEQABVEAYKAAAAADQBAEBABSJDAQEAAEAABAMIgCFIQCCCBEFAAAGEARAJCAQgBCACAipAAAAABAABEIAAEEQACAAAAQAQAQgABAAoQIgAACBAgAUADCAAAIIAAEAAACAAAAgACGARAECAAIgBAAAAyBAAYAAIAAIBYAIoAIEAAQUAAQABAABACQGkmAhAACxGANIQQAEAgQAAQCIgCAAgAAAAAAIAIAABAwAEAACCKAAOAASGAAJGkTBAAEAIgDBhFQAAgAQQBUCAACABUAABAGQoABAIACAREAIIBRMAAgwAAAQAAACAAICAoAAACACFAAAIIAEgwIgBAAAAAAgQAIABACINEQgQAGBACBIAAIQAEAgCAAAmBAAEgAAIQBRAIOEECECQCAADBCAAAAAIAAAABAAGQBAoDSAUBCAmAEgAIAAAEAGMQgAAECA7EAAEAAQAQhAIAAAQAAAQIgAAAAAAABEkAMIgCAJQUAAAABCAKAACAOAEBAAgAAgAAIQQIAAkEADDAECAAQCAAAMgEICcAQQAACACCSQIQABQwAAAAMFABESAAgCAAAAAGAIACQQEIAwgwCAAkAAAAAIAFQgABRAQEA0AAQAAEEAABQAEgBABAwAAAAAAgAAQgAiA0aAAgGkAAiAAAAAAoBAAAAAQCCqEAAgAIIAFgQAzQAAgBBAAgAgIRAAAAAAABBAAAAAAEAAMIAAAAAAgAQAQAAAaIAAIADAIATEAAgAEAAAAAgghAAAQCACCSABCEAAIAAg8AABCGEViPl5FYCJehgGVE9QSUNTNcgBFQgVAAA='}, timeout=20)
200
{"object_type": "TweetRaw", "download_datetime": "2021-10-14T13:13:28.658418+02:00", "raw_value": {"created_at": "Thu Oct 14 10:54:00 +0000 2021", "id": 1448602986406719495, "id_str": "1448602986406719495", "full_text": "Revelation 1: 9- 11 | A historical context | Paul Jennings https://t.co/2bZ1zJyF0z via @YouTube #COVID19 #antiChrist", "truncated": false, "display_text_range": [0, 116], "entities": {"hashtags": [{"text": "COVID19", "indices": [96, 104]}, {"text": "antiChrist", "indices": [105, 116]}], "symbols": [], "user_mentions": [{"screen_name": "YouTube", "name": "YouTube", "id": 10228272, "id_str": "10228272", "indices": [87, 95]}], "urls": [{"url": "https://t.co/2bZ1zJyF0z", "expanded_url": "https://youtu.be/2LwZw0zY5Es", "display_url": "youtu.be/2LwZw0zY5Es", "indices": [59, 82]}]}, "source": "<a href=\"https://mobile.twitter.com\" rel=\"nofollow\">Twitter Web App</a>", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user_id": 1267867099533361153, "user_id_str": "1267867099533361153", "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "reply_count": 0, "quote_count": 0, "conversation_id": 1448602986406719495, "conversation_id_str": "1448602986406719495", "favorited": false, "retweeted": false, "possibly_sensitive": false, "possibly_sensitive_editable": true, "card": {"name": "player", "url": "https://t.co/2bZ1zJyF0z", "card_type_url": "http://card-type-url-is-deprecated.invalid", "binding_values": {"vanity_url": {"type": "STRING", "string_value": "youtube.com", "scribe_key": "vanity_url"}, "player_url": {"type": "STRING", "string_value": "https://www.youtube.com/embed/2LwZw0zY5Es"}, "app_is_free": {"type": "STRING", "string_value": "true"}, "app_price_currency": {"type": "STRING", "string_value": "USD"}, "app_price_amount": {"type": "STRING", "string_value": "0.0"}, "domain": {"type": "STRING", "string_value": "www.youtube.com"}, "app_num_ratings": {"type": "STRING", "string_value": "22,687,489"}, "app_star_rating": {"type": "STRING", "string_value": "4.68756"}, "app_name": {"type": "STRING", "string_value": "YouTube: Watch, Listen, Stream"}, "player_width": {"type": "STRING", "string_value": "480"}, "player_height": {"type": "STRING", "string_value": "360"}, "site": {"type": "USER", "user_value": {"id_str": "10228272", "path": []}, "scribe_key": "publisher_id"}, "title": {"type": "STRING", "string_value": "Revelation 1: 9- 11 | A historical context | Paul Jennings"}, "description": {"type": "STRING", "string_value": "Pastor Paul teaching through the book of Revelation. https://stockportevangelical.co.uk"}, "player_image_small": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448602743531245578/uqv2U9-N?format=jpg&name=144x144", "width": 144, "height": 108, "alt": null}}, "player_image": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448602743531245578/uqv2U9-N?format=jpg&name=280x280", "width": 280, "height": 210, "alt": null}}, "player_image_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448602743531245578/uqv2U9-N?format=jpg&name=1200x627", "width": 1200, "height": 627, "alt": null}}, "player_image_x_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448602743531245578/uqv2U9-N?format=png&name=2048x2048_2_exp", "width": 480, "height": 360, "alt": null}}, "player_image_original": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448602743531245578/uqv2U9-N?format=jpg&name=orig", "width": 480, "height": 360, "alt": null}}, "card_url": {"type": "STRING", "string_value": "https://t.co/2bZ1zJyF0z", "scribe_key": "card_url"}}, "users": {"10228272": {"id": 10228272, "id_str": "10228272", "name": "YouTube", "screen_name": "YouTube", "location": "San Bruno, CA", "description": "#YouTubeShorts \u2014 Introducing the shorter side of YouTube", "url": "https://t.co/kjUK7E8YAQ", "entities": {"url": {"urls": [{"url": "https://t.co/kjUK7E8YAQ", "expanded_url": "https://www.youtube.com/shorts/H12SwqwR2NE", "display_url": "youtube.com/shorts/H12Swqw\u2026", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 73507208, "fast_followers_count": 0, "normal_followers_count": 73507208, "friends_count": 1202, "listed_count": 79530, "created_at": "Tue Nov 13 21:43:46 +0000 2007", "favourites_count": 5742, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": true, "statuses_count": 37541, "media_count": 13146, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": true, "profile_background_color": "AF0000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1427292844612595720/RC1YSvuT_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1427292844612595720/RC1YSvuT_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/10228272/1631634387", "profile_image_extensions_alt_text": null, "profile_image_extensions_media_availability": null, "profile_image_extensions_media_color": {"palette": [{"rgb": {"red": 255, "green": 255, "blue": 255}, "percentage": 70.88}, {"rgb": {"red": 254, "green": 0, "blue": 0}, "percentage": 27.69}, {"rgb": {"red": 252, "green": 180, "blue": 178}, "percentage": 0.86}, {"rgb": {"red": 254, "green": 87, "blue": 90}, "percentage": 0.37}, {"rgb": {"red": 250, "green": 132, "blue": 130}, "percentage": 0.15}]}, "profile_image_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_banner_extensions_alt_text": null, "profile_banner_extensions_media_availability": null, "profile_banner_extensions_media_color": {"palette": [{"rgb": {"red": 62, "green": 11, "blue": 140}, "percentage": 43.31}, {"rgb": {"red": 1, "green": 161, "blue": 75}, "percentage": 23.58}, {"rgb": {"red": 25, "green": 108, "blue": 87}, "percentage": 4.41}, {"rgb": {"red": 141, "green": 106, "blue": 31}, "percentage": 2.93}, {"rgb": {"red": 38, "green": 46, "blue": 118}, "percentage": 2.33}]}, "profile_banner_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_link_color": "C9191D", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "EFEFEF", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": false, "default_profile_image": false, "pinned_tweet_ids": [], "pinned_tweet_ids_str": [], "has_custom_timelines": true, "can_dm": null, "following": null, "follow_request_sent": null, "notifications": null, "muting": null, "blocking": null, "blocked_by": null, "want_retweets": null, "advertiser_account_type": "promotable_user", "advertiser_account_service_levels": ["dso", "dso", "dso", "dso", "dso", "dso", "dso", "dso", "dso"], "profile_interstitial_type": "", "business_profile_state": "none", "translator_type": "regular", "withheld_in_countries": [], "followed_by": null, "ext": {"highlightedLabel": {"r": {"ok": {}}, "ttl": -1}}, "require_some_consent": false}}, "card_platform": {"platform": {"device": {"name": "Swift", "version": "12"}, "audience": {"name": "production", "bucket": null}}}}, "lang": "en", "supplemental_language": null}}
{"object_type": "TweetRaw", "download_datetime": "2021-10-14T13:13:28.658687+02:00", "raw_value": {"created_at": "Thu Oct 14 05:17:19 +0000 2021", "id": 1448518256906551298, "id_str": "1448518256906551298", "full_text": "Khordha continues to record highest #COVID19  positives for third day #Odisha \nhttps://t.co/9KMYaofYr6", "truncated": false, "display_text_range": [0, 102], "entities": {"hashtags": [{"text": "COVID19", "indices": [36, 44]}, {"text": "Odisha", "indices": [70, 77]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/9KMYaofYr6", "expanded_url": "https://kalingatv.com/state/khordha-continues-to-record-highest-covid-positives-for-third-day/", "display_url": "kalingatv.com/state/khordha-\u2026", "indices": [79, 102]}]}, "source": "<a href=\"https://mobile.twitter.com\" rel=\"nofollow\">Twitter Web App</a>", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user_id": 3171641498, "user_id_str": "3171641498", "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 2, "favorite_count": 8, "reply_count": 0, "quote_count": 0, "conversation_id": 1448518256906551298, "conversation_id_str": "1448518256906551298", "favorited": false, "retweeted": false, "possibly_sensitive": false, "possibly_sensitive_editable": true, "card": {"name": "summary_large_image", "url": "https://t.co/9KMYaofYr6", "card_type_url": "http://card-type-url-is-deprecated.invalid", "binding_values": {"vanity_url": {"type": "STRING", "string_value": "kalingatv.com", "scribe_key": "vanity_url"}, "amp": {"type": "BOOLEAN", "boolean_value": true}, "domain": {"type": "STRING", "string_value": "kalingatv.com"}, "creator": {"type": "USER", "user_value": {"id_str": "3171641498", "path": []}}, "site": {"type": "USER", "user_value": {"id_str": "3171641498", "path": []}, "scribe_key": "publisher_id"}, "title": {"type": "STRING", "string_value": "Khordha continues to record highest Covid positives for third day"}, "description": {"type": "STRING", "string_value": "Bhubaneswar: A total of 521 Covid-19 positive cases including 65 in the 0-18 years age group have been detected positive in Odisha in the last 24 hours"}, "thumbnail_image_small": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1447242390666825732/pFdOZZTg?format=jpg&name=100x100", "width": 100, "height": 68, "alt": null}}, "thumbnail_image": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1447242390666825732/pFdOZZTg?format=jpg&name=280x150", "width": 221, "height": 150, "alt": null}}, "thumbnail_image_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1447242390666825732/pFdOZZTg?format=jpg&name=800x320_1", "width": 472, "height": 320, "alt": null}}, "thumbnail_image_x_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1447242390666825732/pFdOZZTg?format=png&name=2048x2048_2_exp", "width": 640, "height": 434, "alt": null}}, "thumbnail_image_original": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1447242390666825732/pFdOZZTg?format=jpg&name=orig", "width": 640, "height": 434, "alt": null}}, "summary_photo_image_small": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1447242390666825732/pFdOZZTg?format=jpg&name=386x202", "width": 386, "height": 202, "alt": null}}, "summary_photo_image": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1447242390666825732/pFdOZZTg?format=jpg&name=600x314", "width": 600, "height": 314, "alt": null}}, "summary_photo_image_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1447242390666825732/pFdOZZTg?format=jpg&name=800x419", "width": 640, "height": 335, "alt": null}}, "summary_photo_image_x_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1447242390666825732/pFdOZZTg?format=png&name=2048x2048_2_exp", "width": 640, "height": 434, "alt": null}}, "summary_photo_image_original": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1447242390666825732/pFdOZZTg?format=jpg&name=orig", "width": 640, "height": 434, "alt": null}}, "photo_image_full_size_small": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1447242390666825732/pFdOZZTg?format=jpg&name=386x202", "width": 386, "height": 202, "alt": null}}, "photo_image_full_size": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1447242390666825732/pFdOZZTg?format=jpg&name=600x314", "width": 600, "height": 314, "alt": null}}, "photo_image_full_size_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1447242390666825732/pFdOZZTg?format=jpg&name=800x419", "width": 640, "height": 335, "alt": null}}, "photo_image_full_size_x_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1447242390666825732/pFdOZZTg?format=png&name=2048x2048_2_exp", "width": 640, "height": 434, "alt": null}}, "photo_image_full_size_original": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1447242390666825732/pFdOZZTg?format=jpg&name=orig", "width": 640, "height": 434, "alt": null}}, "card_url": {"type": "STRING", "string_value": "https://t.co/9KMYaofYr6", "scribe_key": "card_url"}}, "users": {"3171641498": {"id": 3171641498, "id_str": "3171641498", "name": "Kalinga TV", "screen_name": "Kalingatv", "location": "Odisha, India", "description": "When it comes to Breaking News, Kalinga TV leads the Way with 24x7 Coverage.", "url": "https://t.co/lrXWPUyDYx", "entities": {"url": {"urls": [{"url": "https://t.co/lrXWPUyDYx", "expanded_url": "http://kalingatv.com", "display_url": "kalingatv.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 133935, "fast_followers_count": 0, "normal_followers_count": 133935, "friends_count": 184, "listed_count": 95, "created_at": "Sat Apr 25 04:37:23 +0000 2015", "favourites_count": 474, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 101482, "media_count": 33515, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1032290581043732480/JnVinurZ_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1032290581043732480/JnVinurZ_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/3171641498/1583318032", "profile_image_extensions_media_color": {"palette": [{"rgb": {"red": 179, "green": 41, "blue": 28}, "percentage": 87.05}, {"rgb": {"red": 253, "green": 253, "blue": 251}, "percentage": 8.46}, {"rgb": {"red": 199, "green": 98, "blue": 86}, "percentage": 2.34}, {"rgb": {"red": 228, "green": 180, "blue": 176}, "percentage": 0.69}, {"rgb": {"red": 62, "green": 158, "blue": 51}, "percentage": 0.6}]}, "profile_image_extensions_alt_text": null, "profile_image_extensions_media_availability": null, "profile_image_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_banner_extensions_alt_text": null, "profile_banner_extensions_media_availability": null, "profile_banner_extensions_media_color": {"palette": [{"rgb": {"red": 195, "green": 195, "blue": 197}, "percentage": 85.79}, {"rgb": {"red": 166, "green": 44, "blue": 34}, "percentage": 7.27}, {"rgb": {"red": 188, "green": 122, "blue": 119}, "percentage": 2.47}, {"rgb": {"red": 49, "green": 49, "blue": 49}, "percentage": 1.16}, {"rgb": {"red": 166, "green": 197, "blue": 213}, "percentage": 0.78}]}, "profile_banner_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_link_color": "19CF86", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "has_extended_profile": false, "default_profile": false, "default_profile_image": false, "pinned_tweet_ids": [], "pinned_tweet_ids_str": [], "has_custom_timelines": true, "can_dm": null, "following": null, "follow_request_sent": null, "notifications": null, "muting": null, "blocking": null, "blocked_by": null, "want_retweets": null, "advertiser_account_type": "promotable_user", "advertiser_account_service_levels": ["analytics"], "profile_interstitial_type": "", "business_profile_state": "none", "translator_type": "none", "withheld_in_countries": [], "followed_by": null, "ext": {"highlightedLabel": {"r": {"ok": {}}, "ttl": -1}}, "require_some_consent": false}}, "card_platform": {"platform": {"device": {"name": "Swift", "version": "12"}, "audience": {"name": "production", "bucket": null}}}}, "lang": "en", "supplemental_language": null}}
{"object_type": "TweetRaw", "download_datetime": "2021-10-14T13:13:28.658775+02:00", "raw_value": {"created_at": "Thu Oct 14 09:33:10 +0000 2021", "id": 1448582645554847747, "id_str": "1448582645554847747", "full_text": "@SavvyRinu this was in Oslo, which is ironic as Norway (and the UK) continue to block the Covid #TripsWaiver and its potentially lifesaving benefits. More than 3.5 million have died of #COVID19 since the proposal was first introduced a year ago.", "truncated": false, "display_text_range": [11, 245], "entities": {"hashtags": [{"text": "TripsWaiver", "indices": [96, 108]}, {"text": "COVID19", "indices": [185, 193]}], "symbols": [], "user_mentions": [{"screen_name": "SavvyRinu", "name": "Rinu #EndSARS\ud83d\udd25\ud83d\udd2b", "id": 991043283534139392, "id_str": "991043283534139392", "indices": [0, 10]}], "urls": []}, "source": "<a href=\"https://mobile.twitter.com\" rel=\"nofollow\">Twitter Web App</a>", "in_reply_to_status_id": 1447522612272418820, "in_reply_to_status_id_str": "1447522612272418820", "in_reply_to_user_id": 991043283534139392, "in_reply_to_user_id_str": "991043283534139392", "in_reply_to_screen_name": "SavvyRinu", "user_id": 1387787081393610753, "user_id_str": "1387787081393610753", "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "reply_count": 0, "quote_count": 0, "conversation_id": 1447510115821756416, "conversation_id_str": "1447510115821756416", "favorited": false, "retweeted": false, "lang": "en", "supplemental_language": null}}
{"object_type": "TweetRaw", "download_datetime": "2021-10-14T13:13:28.658847+02:00", "raw_value": {"created_at": "Thu Oct 14 04:45:04 +0000 2021", "id": 1448510141507067904, "id_str": "1448510141507067904", "full_text": "The USA accounts for 18.69% of global cases which is the highest amount since June 23 after rising for 3 days in a row, and the USA accounts for 14.76% of global deaths which matches the percentage from July 22 after rising for 2 days in a row. #COVID19", "truncated": false, "display_text_range": [0, 253], "entities": {"hashtags": [{"text": "COVID19", "indices": [245, 253]}], "symbols": [], "user_mentions": [], "urls": []}, "source": "<a href=\"https://mobile.twitter.com\" rel=\"nofollow\">Twitter Web App</a>", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user_id": 3184663694, "user_id_str": "3184663694", "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 1, "favorite_count": 0, "reply_count": 0, "quote_count": 0, "conversation_id": 1448510141507067904, "conversation_id_str": "1448510141507067904", "favorited": false, "retweeted": false, "lang": "en", "supplemental_language": null}}
{"object_type": "TweetRaw", "download_datetime": "2021-10-14T13:13:28.659135+02:00", "raw_value": {"created_at": "Wed Oct 13 21:55:01 +0000 2021", "id": 1448406947833815040, "id_str": "1448406947833815040", "full_text": "\u201cThere is a point where you get a decline in the acceleration and a turnaround of cases,\u201d Dr. #AnthonyFauci said. \u201cThat\u2019s where we are.\u201d\n\nThe US is seeing a decline in #COVID19 cases and hospitalizations and deaths related to the disease. https://t.co/lE0CxG8FOP", "truncated": false, "display_text_range": [0, 262], "entities": {"hashtags": [{"text": "AnthonyFauci", "indices": [94, 107]}, {"text": "COVID19", "indices": [168, 176]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/lE0CxG8FOP", "expanded_url": "https://www.theepochtimes.com/us-seeing-a-decline-in-covid-19-cases-hospitalizations-deaths_4047098.html?utm_medium=social&utm_source=twitter&utm_campaign=digitalsub", "display_url": "theepochtimes.com/us-seeing-a-de\u2026", "indices": [239, 262]}]}, "source": "<a href=\"https://buffer.com\" rel=\"nofollow\">Buffer</a>", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user_id": 29097819, "user_id_str": "29097819", "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 17, "favorite_count": 31, "reply_count": 33, "quote_count": 8, "conversation_id": 1448406947833815040, "conversation_id_str": "1448406947833815040", "favorited": false, "retweeted": false, "possibly_sensitive": false, "possibly_sensitive_editable": true, "card": {"name": "summary_large_image", "url": "https://t.co/lE0CxG8FOP", "card_type_url": "http://card-type-url-is-deprecated.invalid", "binding_values": {"vanity_url": {"type": "STRING", "string_value": "theepochtimes.com", "scribe_key": "vanity_url"}, "amp": {"type": "BOOLEAN", "boolean_value": true}, "domain": {"type": "STRING", "string_value": "www.theepochtimes.com"}, "creator": {"type": "USER", "user_value": {"id_str": "288935074", "path": []}}, "site": {"type": "USER", "user_value": {"id_str": "29097819", "path": []}, "scribe_key": "publisher_id"}, "title": {"type": "STRING", "string_value": "US Seeing a Decline in COVID-19 Cases, Hospitalizations, Deaths"}, "description": {"type": "STRING", "string_value": "The United States is seeing a drop in COVID-19 cases and hospitalizations and deaths related to the disease. ..."}, "thumbnail_image_small": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1445880658061107204/L2P1p6eO?format=jpg&name=100x100", "width": 100, "height": 67, "alt": null}}, "thumbnail_image": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1445880658061107204/L2P1p6eO?format=jpg&name=280x150", "width": 225, "height": 150, "alt": null}}, "thumbnail_image_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1445880658061107204/L2P1p6eO?format=jpg&name=800x320_1", "width": 480, "height": 320, "alt": null}}, "thumbnail_image_x_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1445880658061107204/L2P1p6eO?format=png&name=2048x2048_2_exp", "width": 2048, "height": 1365, "alt": null}}, "thumbnail_image_original": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1445880658061107204/L2P1p6eO?format=jpg&name=orig", "width": 3936, "height": 2624, "alt": null}}, "summary_photo_image_small": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1445880658061107204/L2P1p6eO?format=jpg&name=386x202", "width": 386, "height": 202, "alt": null}}, "summary_photo_image": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1445880658061107204/L2P1p6eO?format=jpg&name=600x314", "width": 600, "height": 314, "alt": null}}, "summary_photo_image_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1445880658061107204/L2P1p6eO?format=jpg&name=800x419", "width": 800, "height": 419, "alt": null}}, "summary_photo_image_x_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1445880658061107204/L2P1p6eO?format=png&name=2048x2048_2_exp", "width": 2048, "height": 1365, "alt": null}}, "summary_photo_image_original": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1445880658061107204/L2P1p6eO?format=jpg&name=orig", "width": 3936, "height": 2624, "alt": null}}, "photo_image_full_size_small": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1445880658061107204/L2P1p6eO?format=jpg&name=386x202", "width": 386, "height": 202, "alt": null}}, "photo_image_full_size": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1445880658061107204/L2P1p6eO?format=jpg&name=600x314", "width": 600, "height": 314, "alt": null}}, "photo_image_full_size_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1445880658061107204/L2P1p6eO?format=jpg&name=800x419", "width": 800, "height": 419, "alt": null}}, "photo_image_full_size_x_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1445880658061107204/L2P1p6eO?format=png&name=2048x2048_2_exp", "width": 2048, "height": 1365, "alt": null}}, "photo_image_full_size_original": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1445880658061107204/L2P1p6eO?format=jpg&name=orig", "width": 3936, "height": 2624, "alt": null}}, "card_url": {"type": "STRING", "string_value": "https://t.co/lE0CxG8FOP", "scribe_key": "card_url"}}, "users": {"288935074": {"id": 288935074, "id_str": "288935074", "name": "Zachary Stieber", "screen_name": "ZackStieber", "location": "United States", "description": "Reporter @EpochTimes \nemail: zack.stieber (at) https://t.co/01VyXecsSb", "url": null, "entities": {"description": {"urls": [{"url": "https://t.co/01VyXecsSb", "expanded_url": "http://epochtimes.nyc", "display_url": "epochtimes.nyc", "indices": [47, 70]}]}}, "protected": false, "followers_count": 9585, "fast_followers_count": 0, "normal_followers_count": 9585, "friends_count": 99, "listed_count": 91, "created_at": "Wed Apr 27 18:22:27 +0000 2011", "favourites_count": 2932, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 11655, "media_count": 1046, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "20201E", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/421503301209706496/f51qZhNK_normal.jpeg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/421503301209706496/f51qZhNK_normal.jpeg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/288935074/1484377113", "profile_image_extensions_alt_text": null, "profile_image_extensions_media_availability": null, "profile_image_extensions_media_color": {"palette": [{"rgb": {"red": 205, "green": 206, "blue": 226}, "percentage": 47.28}, {"rgb": {"red": 84, "green": 49, "blue": 38}, "percentage": 26.75}, {"rgb": {"red": 239, "green": 198, "blue": 154}, "percentage": 14.22}, {"rgb": {"red": 45, "green": 48, "blue": 58}, "percentage": 5.74}, {"rgb": {"red": 48, "green": 39, "blue": 33}, "percentage": 1.19}]}, "profile_image_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_banner_extensions_alt_text": null, "profile_banner_extensions_media_availability": null, "profile_banner_extensions_media_color": {"palette": [{"rgb": {"red": 186, "green": 169, "blue": 175}, "percentage": 63.44}, {"rgb": {"red": 171, "green": 221, "blue": 253}, "percentage": 13.94}, {"rgb": {"red": 196, "green": 168, "blue": 147}, "percentage": 9.5}, {"rgb": {"red": 51, "green": 81, "blue": 140}, "percentage": 5.23}, {"rgb": {"red": 34, "green": 43, "blue": 61}, "percentage": 4.96}]}, "profile_banner_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_link_color": "1878C5", "profile_sidebar_border_color": "C8A867", "profile_sidebar_fill_color": "2827DD", "profile_text_color": "C8A86F", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": false, "default_profile_image": false, "pinned_tweet_ids": [], "pinned_tweet_ids_str": [], "has_custom_timelines": true, "can_dm": null, "following": null, "follow_request_sent": null, "notifications": null, "muting": null, "blocking": null, "blocked_by": null, "want_retweets": null, "advertiser_account_type": "promotable_user", "advertiser_account_service_levels": [], "profile_interstitial_type": "", "business_profile_state": "none", "translator_type": "none", "withheld_in_countries": [], "followed_by": null, "ext": {"highlightedLabel": {"r": {"ok": {}}, "ttl": -1}}, "require_some_consent": false}, "29097819": {"id": 29097819, "id_str": "29097819", "name": "The Epoch Times", "screen_name": "EpochTimes", "location": "New York, USA", "description": "Independent, award-winning reporting based on Truth and Tradition. Free newsletter: https://t.co/0F3JANwb8P | Telegram: https://t.co/Hmk1epY4Kv | Watch: https://t.co/M1G2gEVJmq", "url": "https://t.co/udZgeB9zvZ", "entities": {"url": {"urls": [{"url": "https://t.co/udZgeB9zvZ", "expanded_url": "https://subscribe.epochtimes.com/", "display_url": "subscribe.epochtimes.com", "indices": [0, 23]}]}, "description": {"urls": [{"url": "https://t.co/0F3JANwb8P", "expanded_url": "http://ept.ms/\u2013Newsletters", "display_url": "ept.ms/\u2013Newsletters", "indices": [84, 107]}, {"url": "https://t.co/Hmk1epY4Kv", "expanded_url": "http://t.me/epochtimes", "display_url": "t.me/epochtimes", "indices": [120, 143]}, {"url": "https://t.co/M1G2gEVJmq", "expanded_url": "http://epochtv.com", "display_url": "epochtv.com", "indices": [153, 176]}]}}, "protected": false, "followers_count": 429648, "fast_followers_count": 0, "normal_followers_count": 429648, "friends_count": 80, "listed_count": 2756, "created_at": "Sun Apr 05 23:54:55 +0000 2009", "favourites_count": 36344, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": true, "statuses_count": 206931, "media_count": 13665, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "FFFFFF", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme4/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme4/bg.gif", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/954141295093698560/9x68uifu_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/954141295093698560/9x68uifu_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/29097819/1516660974", "profile_image_extensions_alt_text": null, "profile_image_extensions_media_color": {"palette": [{"rgb": {"red": 0, "green": 58, "blue": 108}, "percentage": 93.18}, {"rgb": {"red": 243, "green": 247, "blue": 248}, "percentage": 6.21}, {"rgb": {"red": 123, "green": 155, "blue": 180}, "percentage": 0.54}]}, "profile_image_extensions_media_availability": null, "profile_image_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_banner_extensions_alt_text": null, "profile_banner_extensions_media_availability": null, "profile_banner_extensions_media_color": {"palette": [{"rgb": {"red": 109, "green": 147, "blue": 196}, "percentage": 27.51}, {"rgb": {"red": 95, "green": 61, "blue": 32}, "percentage": 19.0}, {"rgb": {"red": 183, "green": 198, "blue": 212}, "percentage": 7.81}, {"rgb": {"red": 150, "green": 96, "blue": 36}, "percentage": 7.3}, {"rgb": {"red": 210, "green": 186, "blue": 148}, "percentage": 7.29}]}, "profile_banner_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_link_color": "00218F", "profile_sidebar_border_color": "FFFFFF", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "3C3940", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": false, "default_profile_image": false, "pinned_tweet_ids": [1418577899142225927], "pinned_tweet_ids_str": ["1418577899142225927"], "has_custom_timelines": false, "can_dm": null, "following": null, "follow_request_sent": null, "notifications": null, "muting": null, "blocking": null, "blocked_by": null, "want_retweets": null, "advertiser_account_type": "promotable_user", "advertiser_account_service_levels": ["mms", "smb", "subscription"], "profile_interstitial_type": "", "business_profile_state": "none", "translator_type": "none", "withheld_in_countries": [], "followed_by": null, "ext": {"highlightedLabel": {"r": {"ok": {}}, "ttl": -1}}, "require_some_consent": false}}, "card_platform": {"platform": {"device": {"name": "Swift", "version": "12"}, "audience": {"name": "production", "bucket": null}}}}, "lang": "en", "supplemental_language": null}}
{"object_type": "TweetRaw", "download_datetime": "2021-10-14T13:13:28.659227+02:00", "raw_value": {"created_at": "Wed Oct 13 23:45:44 +0000 2021", "id": 1448434813161992195, "id_str": "1448434813161992195", "full_text": "#MYANMAR #COVID19 SITUATION OCT 14\n\nTotal tally:\n482,803\n\nNew daily cases:\n1,573\n\nNew daily deaths:\n34\n\nDeaths so far:\n18,222\n\nRecoveries so far:\n435,361", "truncated": false, "display_text_range": [0, 153], "entities": {"hashtags": [{"text": "MYANMAR", "indices": [0, 8]}, {"text": "COVID19", "indices": [9, 17]}], "symbols": [], "user_mentions": [], "urls": []}, "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user_id": 4777826268, "user_id_str": "4777826268", "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 21, "favorite_count": 24, "reply_count": 1, "quote_count": 5, "conversation_id": 1448434813161992195, "conversation_id_str": "1448434813161992195", "favorited": false, "retweeted": false, "lang": "en", "supplemental_language": null}}
{"object_type": "TweetRaw", "download_datetime": "2021-10-14T13:13:28.659527+02:00", "raw_value": {"created_at": "Thu Oct 14 09:47:45 +0000 2021", "id": 1448586314027126791, "id_str": "1448586314027126791", "full_text": "Thank you @PhilstarNews\n\"One of the problems of the current entertainment industry is that there is a gap in the content provided. There's not much for older kids and teens who are going through so much, especially during the pandemic\"\nhttps://t.co/dtjFegK7OW\n#pandemic #COVID19", "truncated": false, "display_text_range": [0, 278], "entities": {"hashtags": [{"text": "pandemic", "indices": [260, 269]}, {"text": "COVID19", "indices": [270, 278]}], "symbols": [], "user_mentions": [{"screen_name": "PhilstarNews", "name": "Philstar.com", "id": 55118669, "id_str": "55118669", "indices": [10, 23]}], "urls": [{"url": "https://t.co/dtjFegK7OW", "expanded_url": "https://www.philstar.com/business/2021/10/06/2132016/kids-are-not-alright", "display_url": "philstar.com/business/2021/\u2026", "indices": [236, 259]}]}, "source": "<a href=\"https://mobile.twitter.com\" rel=\"nofollow\">Twitter Web App</a>", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user_id": 1161571646399893506, "user_id_str": "1161571646399893506", "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "reply_count": 0, "quote_count": 0, "conversation_id": 1448586314027126791, "conversation_id_str": "1448586314027126791", "favorited": false, "retweeted": false, "possibly_sensitive": false, "possibly_sensitive_editable": true, "card": {"name": "summary_large_image", "url": "https://t.co/dtjFegK7OW", "card_type_url": "http://card-type-url-is-deprecated.invalid", "binding_values": {"vanity_url": {"type": "STRING", "string_value": "philstar.com", "scribe_key": "vanity_url"}, "domain": {"type": "STRING", "string_value": "www.philstar.com"}, "creator": {"type": "USER", "user_value": {"id_str": "55118669", "path": []}}, "site": {"type": "USER", "user_value": {"id_str": "55118669", "path": []}, "scribe_key": "publisher_id"}, "title": {"type": "STRING", "string_value": "The kids are not alright"}, "description": {"type": "STRING", "string_value": "Over a year into the pandemic and online schooling has become a tiring and difficult way of learning for many Filipino students."}, "thumbnail_image_small": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1447031807405219841/8pYGkbmZ?format=jpg&name=100x100", "width": 100, "height": 67, "alt": null}}, "thumbnail_image": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1447031807405219841/8pYGkbmZ?format=jpg&name=280x150", "width": 225, "height": 150, "alt": null}}, "thumbnail_image_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1447031807405219841/8pYGkbmZ?format=jpg&name=800x320_1", "width": 480, "height": 320, "alt": null}}, "thumbnail_image_x_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1447031807405219841/8pYGkbmZ?format=png&name=2048x2048_2_exp", "width": 800, "height": 533, "alt": null}}, "thumbnail_image_original": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1447031807405219841/8pYGkbmZ?format=jpg&name=orig", "width": 800, "height": 533, "alt": null}}, "summary_photo_image_small": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1447031807405219841/8pYGkbmZ?format=jpg&name=386x202", "width": 386, "height": 202, "alt": null}}, "summary_photo_image": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1447031807405219841/8pYGkbmZ?format=jpg&name=600x314", "width": 600, "height": 314, "alt": null}}, "summary_photo_image_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1447031807405219841/8pYGkbmZ?format=jpg&name=800x419", "width": 800, "height": 419, "alt": null}}, "summary_photo_image_x_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1447031807405219841/8pYGkbmZ?format=png&name=2048x2048_2_exp", "width": 800, "height": 533, "alt": null}}, "summary_photo_image_original": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1447031807405219841/8pYGkbmZ?format=jpg&name=orig", "width": 800, "height": 533, "alt": null}}, "photo_image_full_size_small": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1447031807405219841/8pYGkbmZ?format=jpg&name=386x202", "width": 386, "height": 202, "alt": null}}, "photo_image_full_size": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1447031807405219841/8pYGkbmZ?format=jpg&name=600x314", "width": 600, "height": 314, "alt": null}}, "photo_image_full_size_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1447031807405219841/8pYGkbmZ?format=jpg&name=800x419", "width": 800, "height": 419, "alt": null}}, "photo_image_full_size_x_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1447031807405219841/8pYGkbmZ?format=png&name=2048x2048_2_exp", "width": 800, "height": 533, "alt": null}}, "photo_image_full_size_original": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1447031807405219841/8pYGkbmZ?format=jpg&name=orig", "width": 800, "height": 533, "alt": null}}, "card_url": {"type": "STRING", "string_value": "https://t.co/dtjFegK7OW", "scribe_key": "card_url"}}, "users": {"55118669": {"id": 55118669, "id_str": "55118669", "name": "Philstar.com", "screen_name": "PhilstarNews", "location": "Manila, Philippines", "description": "The official digital arm of the STAR Group of Publications. We provide credible breaking news, in-depth reports, fact-checks, and contextual real-time coverage.", "url": "https://t.co/dvIgySAUNd", "entities": {"url": {"urls": [{"url": "https://t.co/dvIgySAUNd", "expanded_url": "http://www.philstar.com", "display_url": "philstar.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 747368, "fast_followers_count": 0, "normal_followers_count": 747368, "friends_count": 475, "listed_count": 2380, "created_at": "Thu Jul 09 02:48:17 +0000 2009", "favourites_count": 3889, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": true, "statuses_count": 307821, "media_count": 41244, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "131516", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1425368185969078275/wbzX1Ay3_normal.png", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1425368185969078275/wbzX1Ay3_normal.png", "profile_banner_url": "https://pbs.twimg.com/profile_banners/55118669/1632031177", "profile_image_extensions_alt_text": null, "profile_image_extensions_media_availability": null, "profile_image_extensions_media_color": {"palette": [{"rgb": {"red": 0, "green": 151, "blue": 204}, "percentage": 88.78}, {"rgb": {"red": 251, "green": 253, "blue": 252}, "percentage": 6.3}, {"rgb": {"red": 247, "green": 209, "blue": 7}, "percentage": 3.42}, {"rgb": {"red": 159, "green": 189, "blue": 77}, "percentage": 0.73}, {"rgb": {"red": 96, "green": 174, "blue": 129}, "percentage": 0.41}]}, "profile_image_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_banner_extensions_alt_text": null, "profile_banner_extensions_media_availability": null, "profile_banner_extensions_media_color": {"palette": [{"rgb": {"red": 39, "green": 141, "blue": 199}, "percentage": 81.03}, {"rgb": {"red": 197, "green": 215, "blue": 224}, "percentage": 7.76}, {"rgb": {"red": 24, "green": 103, "blue": 149}, "percentage": 4.51}, {"rgb": {"red": 225, "green": 203, "blue": 38}, "percentage": 2.76}, {"rgb": {"red": 96, "green": 170, "blue": 169}, "percentage": 2.11}]}, "profile_banner_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_link_color": "0298CB", "profile_sidebar_border_color": "FFFFFF", "profile_sidebar_fill_color": "95E8EC", "profile_text_color": "3C3940", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": false, "default_profile_image": false, "pinned_tweet_ids": [], "pinned_tweet_ids_str": [], "has_custom_timelines": true, "can_dm": null, "following": null, "follow_request_sent": null, "notifications": null, "muting": null, "blocking": null, "blocked_by": null, "want_retweets": null, "advertiser_account_type": "promotable_user", "advertiser_account_service_levels": ["smb", "media_studio"], "profile_interstitial_type": "", "business_profile_state": "none", "translator_type": "none", "withheld_in_countries": [], "followed_by": null, "ext": {"highlightedLabel": {"r": {"ok": {}}, "ttl": -1}}, "require_some_consent": false}}, "card_platform": {"platform": {"device": {"name": "Swift", "version": "12"}, "audience": {"name": "production", "bucket": null}}}}, "lang": "en", "supplemental_language": null}}
{"object_type": "TweetRaw", "download_datetime": "2021-10-14T13:13:28.659747+02:00", "raw_value": {"created_at": "Thu Oct 14 10:56:06 +0000 2021", "id": 1448603516528889858, "id_str": "1448603516528889858", "full_text": "The city of Nawa, west of #Daraa, recorded dozens of positive #Covid19 cases in the last 24 hours after the virus spread widely among civilians\nRead more: https://t.co/Bmf6ljBV05", "truncated": false, "display_text_range": [0, 178], "entities": {"hashtags": [{"text": "Daraa", "indices": [26, 32]}, {"text": "Covid19", "indices": [62, 70]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/Bmf6ljBV05", "expanded_url": "http://mgal.me/#/pages/news/view;id=5684", "display_url": "mgal.me/#/pages/news/v\u2026", "indices": [155, 178]}]}, "source": "<a href=\"https://mobile.twitter.com\" rel=\"nofollow\">Twitter Web App</a>", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user_id": 1392592369426608134, "user_id_str": "1392592369426608134", "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "reply_count": 0, "quote_count": 0, "conversation_id": 1448603516528889858, "conversation_id_str": "1448603516528889858", "favorited": false, "retweeted": false, "possibly_sensitive": false, "possibly_sensitive_editable": true, "card": {"name": "summary_large_image", "url": "https://t.co/Bmf6ljBV05", "card_type_url": "http://card-type-url-is-deprecated.invalid", "binding_values": {"vanity_url": {"type": "STRING", "string_value": "mgal.me", "scribe_key": "vanity_url"}, "domain": {"type": "STRING", "string_value": "mgal.me"}, "site": {"type": "USER", "user_value": {"id_str": "1463970212", "path": []}, "scribe_key": "publisher_id"}, "title": {"type": "STRING", "string_value": "Mgal - Middle East Geopolitical Analytical Lense - Independent Consultancy"}, "summary_photo_image_alt_text": {"type": "STRING", "string_value": "Mgal - Middle East Geopolitical Analytical Lense - Independent Consultancy"}, "photo_image_full_size_alt_text": {"type": "STRING", "string_value": "Mgal - Middle East Geopolitical Analytical Lense - Independent Consultancy"}, "description": {"type": "STRING", "string_value": "Mgal is a highly networked consultancy that is specialized in the Middle East"}, "thumbnail_image_small": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1446047035120050176/QttzheVz?format=png&name=100x100", "width": 100, "height": 58, "alt": "Mgal - Middle East Geopolitical Analytical Lense - Independent Consultancy"}}, "thumbnail_image": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1446047035120050176/QttzheVz?format=png&name=280x150", "width": 261, "height": 150, "alt": "Mgal - Middle East Geopolitical Analytical Lense - Independent Consultancy"}}, "thumbnail_image_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1446047035120050176/QttzheVz?format=png&name=1200x627", "width": 1200, "height": 627, "alt": "Mgal - Middle East Geopolitical Analytical Lense - Independent Consultancy"}}, "thumbnail_image_x_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1446047035120050176/QttzheVz?format=png&name=2048x2048_2_exp", "width": 278, "height": 160, "alt": "Mgal - Middle East Geopolitical Analytical Lense - Independent Consultancy"}}, "thumbnail_image_original": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1446047035120050176/QttzheVz?format=png&name=orig", "width": 278, "height": 160, "alt": "Mgal - Middle East Geopolitical Analytical Lense - Independent Consultancy"}}, "summary_photo_image_small": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1446047035120050176/QttzheVz?format=png&name=600x314", "width": 278, "height": 145, "alt": "Mgal - Middle East Geopolitical Analytical Lense - Independent Consultancy"}}, "summary_photo_image": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1446047035120050176/QttzheVz?format=png&name=800x419", "width": 278, "height": 146, "alt": "Mgal - Middle East Geopolitical Analytical Lense - Independent Consultancy"}}, "summary_photo_image_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1446047035120050176/QttzheVz?format=png&name=800x419", "width": 278, "height": 146, "alt": "Mgal - Middle East Geopolitical Analytical Lense - Independent Consultancy"}}, "summary_photo_image_x_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1446047035120050176/QttzheVz?format=png&name=2048x2048_2_exp", "width": 278, "height": 160, "alt": "Mgal - Middle East Geopolitical Analytical Lense - Independent Consultancy"}}, "summary_photo_image_original": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1446047035120050176/QttzheVz?format=png&name=orig", "width": 278, "height": 160, "alt": "Mgal - Middle East Geopolitical Analytical Lense - Independent Consultancy"}}, "photo_image_full_size_small": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1446047035120050176/QttzheVz?format=png&name=600x314", "width": 278, "height": 145, "alt": "Mgal - Middle East Geopolitical Analytical Lense - Independent Consultancy"}}, "photo_image_full_size": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1446047035120050176/QttzheVz?format=png&name=800x419", "width": 278, "height": 146, "alt": "Mgal - Middle East Geopolitical Analytical Lense - Independent Consultancy"}}, "photo_image_full_size_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1446047035120050176/QttzheVz?format=png&name=800x419", "width": 278, "height": 146, "alt": "Mgal - Middle East Geopolitical Analytical Lense - Independent Consultancy"}}, "photo_image_full_size_x_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1446047035120050176/QttzheVz?format=png&name=2048x2048_2_exp", "width": 278, "height": 160, "alt": "Mgal - Middle East Geopolitical Analytical Lense - Independent Consultancy"}}, "photo_image_full_size_original": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1446047035120050176/QttzheVz?format=png&name=orig", "width": 278, "height": 160, "alt": "Mgal - Middle East Geopolitical Analytical Lense - Independent Consultancy"}}, "card_url": {"type": "STRING", "string_value": "https://t.co/Bmf6ljBV05", "scribe_key": "card_url"}}, "users": {"1463970212": {"id": 1463970212, "id_str": "1463970212", "name": "kinan Dwair", "screen_name": "KinanDwair", "location": "", "description": "", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 36, "fast_followers_count": 0, "normal_followers_count": 36, "friends_count": 184, "listed_count": 0, "created_at": "Tue May 28 06:21:41 +0000 2013", "favourites_count": 1505, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 93, "media_count": 1, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/3721962909/d7872e5bb9afe290fb40e1a8f2919ce3_normal.jpeg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/3721962909/d7872e5bb9afe290fb40e1a8f2919ce3_normal.jpeg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1463970212/1399881655", "profile_image_extensions_alt_text": null, "profile_image_extensions_media_availability": null, "profile_image_extensions_media_color": null, "profile_image_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_banner_extensions_alt_text": null, "profile_banner_extensions_media_availability": null, "profile_banner_extensions_media_color": null, "profile_banner_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": true, "default_profile_image": false, "pinned_tweet_ids": [], "pinned_tweet_ids_str": [], "has_custom_timelines": false, "can_dm": null, "following": null, "follow_request_sent": null, "notifications": null, "muting": null, "blocking": null, "blocked_by": null, "want_retweets": null, "advertiser_account_type": "none", "advertiser_account_service_levels": [], "profile_interstitial_type": "", "business_profile_state": "none", "translator_type": "none", "withheld_in_countries": [], "followed_by": null, "ext": {"highlightedLabel": {"r": {"ok": {}}, "ttl": -1}}, "require_some_consent": false}}, "card_platform": {"platform": {"device": {"name": "Swift", "version": "12"}, "audience": {"name": "production", "bucket": null}}}}, "lang": "en", "supplemental_language": null}}
{"object_type": "TweetRaw", "download_datetime": "2021-10-14T13:13:28.659892+02:00", "raw_value": {"created_at": "Thu Oct 14 05:59:53 +0000 2021", "id": 1448528970362724353, "id_str": "1448528970362724353", "full_text": "@VisitorsInsure True, always buy best #visitorinsurance for your parents planning to visit USA as it is the only solution during #covid19.For more info visit https://t.co/bY51CCPw75", "truncated": false, "display_text_range": [16, 181], "entities": {"hashtags": [{"text": "visitorinsurance", "indices": [38, 55]}, {"text": "covid19", "indices": [129, 137]}], "symbols": [], "user_mentions": [{"screen_name": "VisitorsInsure", "name": "Visitor Insurance Services", "id": 19343228, "id_str": "19343228", "indices": [0, 15]}], "urls": [{"url": "https://t.co/bY51CCPw75", "expanded_url": "http://www.visitorinsuranceservices.com", "display_url": "visitorinsuranceservices.com", "indices": [158, 181]}]}, "source": "<a href=\"https://mobile.twitter.com\" rel=\"nofollow\">Twitter Web App</a>", "in_reply_to_status_id": 1448343985727189001, "in_reply_to_status_id_str": "1448343985727189001", "in_reply_to_user_id": 19343228, "in_reply_to_user_id_str": "19343228", "in_reply_to_screen_name": "VisitorsInsure", "user_id": 1339745293, "user_id_str": "1339745293", "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "reply_count": 0, "quote_count": 0, "conversation_id": 1448343985727189001, "conversation_id_str": "1448343985727189001", "conversation_control": {"policy": "community", "conversation_owner": {"screen_name": "VisitorsInsure"}}, "favorited": false, "retweeted": false, "possibly_sensitive": false, "possibly_sensitive_editable": true, "card": {"name": "summary", "url": "https://t.co/bY51CCPw75", "card_type_url": "http://card-type-url-is-deprecated.invalid", "binding_values": {"vanity_url": {"type": "STRING", "string_value": "visitorinsuranceservices.com", "scribe_key": "vanity_url"}, "domain": {"type": "STRING", "string_value": "www.visitorinsuranceservices.com"}, "title": {"type": "STRING", "string_value": "Visitor Insurance Services"}, "description": {"type": "STRING", "string_value": "USA Visitors Insurance for Parents Visiting America, Visitor Health Insurance, Travel Medical Coverage."}, "thumbnail_image_small": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1447476511947165703/2misBppz?format=png&name=100x100_2", "width": 100, "height": 100, "alt": null}}, "thumbnail_image": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1447476511947165703/2misBppz?format=png&name=144x144_2", "width": 144, "height": 144, "alt": null}}, "thumbnail_image_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1447476511947165703/2misBppz?format=png&name=280x280_2", "width": 198, "height": 198, "alt": null}}, "thumbnail_image_x_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1447476511947165703/2misBppz?format=png&name=2048x2048_2_exp", "width": 198, "height": 198, "alt": null}}, "thumbnail_image_original": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1447476511947165703/2misBppz?format=png&name=orig", "width": 198, "height": 198, "alt": null}}, "card_url": {"type": "STRING", "string_value": "https://t.co/bY51CCPw75", "scribe_key": "card_url"}}, "card_platform": {"platform": {"device": {"name": "Swift", "version": "12"}, "audience": {"name": "production", "bucket": null}}}}, "lang": "en", "supplemental_language": null}}
{"object_type": "TweetRaw", "download_datetime": "2021-10-14T13:13:28.660198+02:00", "raw_value": {"created_at": "Thu Oct 14 08:29:27 +0000 2021", "id": 1448566608906145792, "id_str": "1448566608906145792", "full_text": "The reality of #Sweden 's #COVID19 approach: It just didn't make much difference one way or the other. https://t.co/7Bik4LFS9Y", "truncated": false, "display_text_range": [0, 126], "entities": {"hashtags": [{"text": "Sweden", "indices": [15, 22]}, {"text": "COVID19", "indices": [26, 34]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/7Bik4LFS9Y", "expanded_url": "https://www.bloomberg.com/opinion/articles/2021-10-14/sweden-a-covid-success-story-or-a-failure-maybe-neither", "display_url": "bloomberg.com/opinion/articl\u2026", "indices": [103, 126]}]}, "source": "<a href=\"https://mobile.twitter.com\" rel=\"nofollow\">Twitter Web App</a>", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user_id": 1172146759532986370, "user_id_str": "1172146759532986370", "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "reply_count": 0, "quote_count": 0, "conversation_id": 1448566608906145792, "conversation_id_str": "1448566608906145792", "favorited": false, "retweeted": false, "possibly_sensitive": false, "possibly_sensitive_editable": true, "card": {"name": "summary_large_image", "url": "https://t.co/7Bik4LFS9Y", "card_type_url": "http://card-type-url-is-deprecated.invalid", "binding_values": {"vanity_url": {"type": "STRING", "string_value": "bloomberg.com", "scribe_key": "vanity_url"}, "domain": {"type": "STRING", "string_value": "www.bloomberg.com"}, "site": {"type": "USER", "user_value": {"id_str": "227682918", "path": []}, "scribe_key": "publisher_id"}, "title": {"type": "STRING", "string_value": "So Was Sweden a Covid Success or Failure?"}, "description": {"type": "STRING", "string_value": "Either way, it hasn\u2019t really earned its place as a lightning rod in the debate over\u00a0pandemic policy.\u00a0"}, "thumbnail_image_small": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448552693736349697/ou4DfTBY?format=jpg&name=100x100", "width": 100, "height": 75, "alt": null}}, "thumbnail_image": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448552693736349697/ou4DfTBY?format=jpg&name=280x150", "width": 200, "height": 150, "alt": null}}, "thumbnail_image_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448552693736349697/ou4DfTBY?format=jpg&name=400x400", "width": 400, "height": 300, "alt": null}}, "thumbnail_image_x_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448552693736349697/ou4DfTBY?format=png&name=2048x2048_2_exp", "width": 1200, "height": 899, "alt": null}}, "thumbnail_image_original": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448552693736349697/ou4DfTBY?format=jpg&name=orig", "width": 1200, "height": 899, "alt": null}}, "summary_photo_image_small": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448552693736349697/ou4DfTBY?format=jpg&name=386x202", "width": 386, "height": 202, "alt": null}}, "summary_photo_image": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448552693736349697/ou4DfTBY?format=jpg&name=600x314", "width": 600, "height": 314, "alt": null}}, "summary_photo_image_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448552693736349697/ou4DfTBY?format=jpg&name=800x419", "width": 800, "height": 419, "alt": null}}, "summary_photo_image_x_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448552693736349697/ou4DfTBY?format=png&name=2048x2048_2_exp", "width": 1200, "height": 899, "alt": null}}, "summary_photo_image_original": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448552693736349697/ou4DfTBY?format=jpg&name=orig", "width": 1200, "height": 899, "alt": null}}, "photo_image_full_size_small": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448552693736349697/ou4DfTBY?format=jpg&name=386x202", "width": 386, "height": 202, "alt": null}}, "photo_image_full_size": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448552693736349697/ou4DfTBY?format=jpg&name=600x314", "width": 600, "height": 314, "alt": null}}, "photo_image_full_size_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448552693736349697/ou4DfTBY?format=jpg&name=800x419", "width": 800, "height": 419, "alt": null}}, "photo_image_full_size_x_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448552693736349697/ou4DfTBY?format=png&name=2048x2048_2_exp", "width": 1200, "height": 899, "alt": null}}, "photo_image_full_size_original": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448552693736349697/ou4DfTBY?format=jpg&name=orig", "width": 1200, "height": 899, "alt": null}}, "card_url": {"type": "STRING", "string_value": "https://t.co/7Bik4LFS9Y", "scribe_key": "card_url"}}, "users": {"227682918": {"id": 227682918, "id_str": "227682918", "name": "Bloomberg Opinion", "screen_name": "bopinion", "location": "Worldwide", "description": "Opinions on business, economics and much more from the editors and columnists at Bloomberg Opinion.", "url": "https://t.co/eY4AY2rZeQ", "entities": {"url": {"urls": [{"url": "https://t.co/eY4AY2rZeQ", "expanded_url": "http://bloomberg.com/opinion", "display_url": "bloomberg.com/opinion", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 381305, "fast_followers_count": 0, "normal_followers_count": 381305, "friends_count": 703, "listed_count": 5681, "created_at": "Fri Dec 17 14:20:58 +0000 2010", "favourites_count": 8379, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": true, "statuses_count": 207267, "media_count": 82849, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/991778099397320705/6LWXR6MS_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/991778099397320705/6LWXR6MS_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/227682918/1525292911", "profile_image_extensions_media_color": {"palette": [{"rgb": {"red": 0, "green": 114, "blue": 223}, "percentage": 87.51}, {"rgb": {"red": 251, "green": 253, "blue": 251}, "percentage": 9.11}, {"rgb": {"red": 142, "green": 193, "blue": 241}, "percentage": 2.53}, {"rgb": {"red": 80, "green": 156, "blue": 229}, "percentage": 0.9}]}, "profile_image_extensions_alt_text": null, "profile_image_extensions_media_availability": null, "profile_image_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_banner_extensions_alt_text": null, "profile_banner_extensions_media_availability": null, "profile_banner_extensions_media_color": {"palette": [{"rgb": {"red": 1, "green": 114, "blue": 255}, "percentage": 100.0}]}, "profile_banner_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_link_color": "0072FF", "profile_sidebar_border_color": "FFFFFF", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": false, "default_profile_image": false, "pinned_tweet_ids": [1448257494036398082], "pinned_tweet_ids_str": ["1448257494036398082"], "has_custom_timelines": true, "can_dm": null, "following": null, "follow_request_sent": null, "notifications": null, "muting": null, "blocking": null, "blocked_by": null, "want_retweets": null, "advertiser_account_type": "promotable_user", "advertiser_account_service_levels": ["dso", "smb", "media_studio"], "profile_interstitial_type": "", "business_profile_state": "none", "translator_type": "none", "withheld_in_countries": [], "followed_by": null, "ext": {"highlightedLabel": {"r": {"ok": {}}, "ttl": -1}}, "require_some_consent": false}}, "card_platform": {"platform": {"device": {"name": "Swift", "version": "12"}, "audience": {"name": "production", "bucket": null}}}}, "lang": "en", "supplemental_language": null}}
{"object_type": "TweetRaw", "download_datetime": "2021-10-14T13:13:28.660348+02:00", "raw_value": {"created_at": "Thu Oct 14 09:53:51 +0000 2021", "id": 1448587851503964164, "id_str": "1448587851503964164", "full_text": "@Maryam_Rajavi Khamenei and his regime massacred political prisoners in 1988 to keep their grip on power. Now, they are causing hundreds of thousands of deaths in the inferno of the #COVID19 to preserve their rule. #1988Massacre\nhttps://t.co/sGoTJFiABD", "truncated": false, "display_text_range": [15, 252], "entities": {"hashtags": [{"text": "COVID19", "indices": [182, 190]}, {"text": "1988Massacre", "indices": [215, 228]}], "symbols": [], "user_mentions": [{"screen_name": "Maryam_Rajavi", "name": "Maryam Rajavi", "id": 56961858, "id_str": "56961858", "indices": [0, 14]}], "urls": [{"url": "https://t.co/sGoTJFiABD", "expanded_url": "https://maryam-rajavi.com/en/iranians-rally-and-demonstration-in-stockholm/", "display_url": "maryam-rajavi.com/en/iranians-ra\u2026", "indices": [229, 252]}]}, "source": "<a href=\"https://mobile.twitter.com\" rel=\"nofollow\">Twitter Web App</a>", "in_reply_to_status_id": 1448586733008957440, "in_reply_to_status_id_str": "1448586733008957440", "in_reply_to_user_id": 56961858, "in_reply_to_user_id_str": "56961858", "in_reply_to_screen_name": "Maryam_Rajavi", "user_id": 57684279, "user_id_str": "57684279", "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 1, "favorite_count": 1, "reply_count": 0, "quote_count": 0, "conversation_id": 1448586733008957440, "conversation_id_str": "1448586733008957440", "favorited": false, "retweeted": false, "possibly_sensitive": false, "possibly_sensitive_editable": true, "card": {"name": "summary_large_image", "url": "https://t.co/sGoTJFiABD", "card_type_url": "http://card-type-url-is-deprecated.invalid", "binding_values": {"vanity_url": {"type": "STRING", "string_value": "maryam-rajavi.com", "scribe_key": "vanity_url"}, "domain": {"type": "STRING", "string_value": "www.maryam-rajavi.com"}, "title": {"type": "STRING", "string_value": "Maryam Rajavi: The Call-for-Justice Movement Should Shine Ever Brighter - Maryam Rajavi"}, "description": {"type": "STRING", "string_value": "Maryam Rajavi: Keep alight the Call-for-Justice Movement ever brighter every day"}, "thumbnail_image_small": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1447637547795218432/4_kiW-ok?format=jpg&name=100x100", "width": 100, "height": 67, "alt": null}}, "thumbnail_image": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1447637547795218432/4_kiW-ok?format=jpg&name=280x150", "width": 225, "height": 150, "alt": null}}, "thumbnail_image_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1447637547795218432/4_kiW-ok?format=jpg&name=800x320_1", "width": 480, "height": 320, "alt": null}}, "thumbnail_image_x_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1447637547795218432/4_kiW-ok?format=png&name=2048x2048_2_exp", "width": 2048, "height": 1366, "alt": null}}, "thumbnail_image_original": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1447637547795218432/4_kiW-ok?format=jpg&name=orig", "width": 2560, "height": 1707, "alt": null}}, "summary_photo_image_small": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1447637547795218432/4_kiW-ok?format=jpg&name=386x202", "width": 386, "height": 202, "alt": null}}, "summary_photo_image": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1447637547795218432/4_kiW-ok?format=jpg&name=600x314", "width": 600, "height": 314, "alt": null}}, "summary_photo_image_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1447637547795218432/4_kiW-ok?format=jpg&name=800x419", "width": 800, "height": 419, "alt": null}}, "summary_photo_image_x_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1447637547795218432/4_kiW-ok?format=png&name=2048x2048_2_exp", "width": 2048, "height": 1366, "alt": null}}, "summary_photo_image_original": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1447637547795218432/4_kiW-ok?format=jpg&name=orig", "width": 2560, "height": 1707, "alt": null}}, "photo_image_full_size_small": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1447637547795218432/4_kiW-ok?format=jpg&name=386x202", "width": 386, "height": 202, "alt": null}}, "photo_image_full_size": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1447637547795218432/4_kiW-ok?format=jpg&name=600x314", "width": 600, "height": 314, "alt": null}}, "photo_image_full_size_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1447637547795218432/4_kiW-ok?format=jpg&name=800x419", "width": 800, "height": 419, "alt": null}}, "photo_image_full_size_x_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1447637547795218432/4_kiW-ok?format=png&name=2048x2048_2_exp", "width": 2048, "height": 1366, "alt": null}}, "photo_image_full_size_original": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1447637547795218432/4_kiW-ok?format=jpg&name=orig", "width": 2560, "height": 1707, "alt": null}}, "card_url": {"type": "STRING", "string_value": "https://t.co/sGoTJFiABD", "scribe_key": "card_url"}}, "card_platform": {"platform": {"device": {"name": "Swift", "version": "12"}, "audience": {"name": "production", "bucket": null}}}}, "lang": "en", "supplemental_language": null}}
{"object_type": "TweetRaw", "download_datetime": "2021-10-14T13:13:28.660425+02:00", "raw_value": {"created_at": "Wed Oct 13 21:50:36 +0000 2021", "id": 1448405839375650818, "id_str": "1448405839375650818", "full_text": "@CapitalOne so you guys wanna charge a 30 dollar late fee while you know the banks were closed yesterday. We're in the middle of #COVID19 and yet you're still finding a way to exploit the very same people who are helping to keep you in business. Seems sus to me.", "truncated": false, "display_text_range": [0, 262], "entities": {"hashtags": [{"text": "COVID19", "indices": [129, 137]}], "symbols": [], "user_mentions": [{"screen_name": "CapitalOne", "name": "Capital One", "id": 364477412, "id_str": "364477412", "indices": [0, 11]}], "urls": []}, "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": 364477412, "in_reply_to_user_id_str": "364477412", "in_reply_to_screen_name": "CapitalOne", "user_id": 1448404903328686084, "user_id_str": "1448404903328686084", "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "reply_count": 0, "quote_count": 0, "conversation_id": 1448405839375650818, "conversation_id_str": "1448405839375650818", "favorited": false, "retweeted": false, "lang": "en", "supplemental_language": null}}
{"object_type": "TweetRaw", "download_datetime": "2021-10-14T13:13:28.660526+02:00", "raw_value": {"created_at": "Thu Oct 14 10:25:10 +0000 2021", "id": 1448595732340953090, "id_str": "1448595732340953090", "full_text": "For #COVID19 cases in countries and areas outside of the WHO Western Pacific Region, please visit: https://t.co/VY9fK0B4Wd", "truncated": false, "display_text_range": [0, 122], "entities": {"hashtags": [{"text": "COVID19", "indices": [4, 12]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/VY9fK0B4Wd", "expanded_url": "https://covid19.who.int/", "display_url": "covid19.who.int", "indices": [99, 122]}]}, "source": "<a href=\"https://mobile.twitter.com\" rel=\"nofollow\">Twitter Web App</a>", "in_reply_to_status_id": 1448595728691986435, "in_reply_to_status_id_str": "1448595728691986435", "in_reply_to_user_id": 3794682452, "in_reply_to_user_id_str": "3794682452", "in_reply_to_screen_name": "WHOWPRO", "user_id": 3794682452, "user_id_str": "3794682452", "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 1, "reply_count": 0, "quote_count": 0, "conversation_id": 1448595728691986435, "conversation_id_str": "1448595728691986435", "favorited": false, "retweeted": false, "possibly_sensitive": false, "possibly_sensitive_editable": true, "card": {"name": "summary", "url": "https://t.co/VY9fK0B4Wd", "card_type_url": "http://card-type-url-is-deprecated.invalid", "binding_values": {"vanity_url": {"type": "STRING", "string_value": "covid19.who.int", "scribe_key": "vanity_url"}, "domain": {"type": "STRING", "string_value": "covid19.who.int"}, "title": {"type": "STRING", "string_value": "WHO Coronavirus (COVID-19) Dashboard"}, "description": {"type": "STRING", "string_value": "World Health Organization Coronavirus disease situation dashboard presents official daily counts of COVID-19 cases and deaths worldwide, along with vaccination rates and other vaccination data, while..."}, "thumbnail_image_small": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1445310666257371136/rRj_tc89?format=jpg&name=100x100_2", "width": 100, "height": 100, "alt": null}}, "thumbnail_image": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1445310666257371136/rRj_tc89?format=jpg&name=144x144_2", "width": 144, "height": 144, "alt": null}}, "thumbnail_image_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1445310666257371136/rRj_tc89?format=jpg&name=420x420_2", "width": 420, "height": 420, "alt": null}}, "thumbnail_image_x_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1445310666257371136/rRj_tc89?format=png&name=2048x2048_2_exp", "width": 2048, "height": 2048, "alt": null}}, "thumbnail_image_original": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1445310666257371136/rRj_tc89?format=jpg&name=orig", "width": 2350, "height": 2350, "alt": null}}, "card_url": {"type": "STRING", "string_value": "https://t.co/VY9fK0B4Wd", "scribe_key": "card_url"}}, "card_platform": {"platform": {"device": {"name": "Swift", "version": "12"}, "audience": {"name": "production", "bucket": null}}}}, "lang": "en", "supplemental_language": null, "self_thread": {"id": 1448595728691986435, "id_str": "1448595728691986435"}}}
{"object_type": "TweetRaw", "download_datetime": "2021-10-14T13:13:28.660599+02:00", "raw_value": {"created_at": "Thu Oct 14 10:56:59 +0000 2021", "id": 1448603738743062532, "id_str": "1448603738743062532", "full_text": "@HNEHealth @HNEHealth   just wondering, does taking your temperature an effective way to know if you got #Covid19 before the actual symptoms start to appear???\n(Maybe we should take our temperatures before leaving the house and transmitting the virus)", "truncated": false, "display_text_range": [11, 251], "entities": {"hashtags": [{"text": "Covid19", "indices": [105, 113]}], "symbols": [], "user_mentions": [{"screen_name": "HNEHealth", "name": "HNE Health", "id": 171489989, "id_str": "171489989", "indices": [0, 10]}, {"screen_name": "HNEHealth", "name": "HNE Health", "id": 171489989, "id_str": "171489989", "indices": [11, 21]}], "urls": []}, "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "in_reply_to_status_id": 1448438578011246593, "in_reply_to_status_id_str": "1448438578011246593", "in_reply_to_user_id": 171489989, "in_reply_to_user_id_str": "171489989", "in_reply_to_screen_name": "HNEHealth", "user_id": 1436200289044873219, "user_id_str": "1436200289044873219", "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 1, "favorite_count": 1, "reply_count": 0, "quote_count": 0, "conversation_id": 1448438578011246593, "conversation_id_str": "1448438578011246593", "favorited": false, "retweeted": false, "lang": "en", "supplemental_language": null}}
{"object_type": "TweetRaw", "download_datetime": "2021-10-14T13:13:28.660810+02:00", "raw_value": {"created_at": "Thu Oct 14 10:40:55 +0000 2021", "id": 1448599696381984769, "id_str": "1448599696381984769", "full_text": "#COVID19 showed the potential impact of global pandemics. \n\nExperts say the next pandemic could be caused by an influenza virus. Have we learned the lessons of the past? \n\n https://t.co/b1G1J8mq9B #EUfluday", "truncated": false, "display_text_range": [0, 206], "entities": {"hashtags": [{"text": "COVID19", "indices": [0, 8]}, {"text": "EUfluday", "indices": [197, 206]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/b1G1J8mq9B", "expanded_url": "https://www.vaccinestoday.eu/stories/preparing-for-pandemics-next-time-well-be-ready/", "display_url": "vaccinestoday.eu/stories/prepar\u2026", "indices": [173, 196]}]}, "source": "<a href=\"https://mobile.twitter.com\" rel=\"nofollow\">Twitter Web App</a>", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user_id": 205670342, "user_id_str": "205670342", "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "reply_count": 0, "quote_count": 0, "conversation_id": 1448599696381984769, "conversation_id_str": "1448599696381984769", "favorited": false, "retweeted": false, "possibly_sensitive": false, "possibly_sensitive_editable": true, "card": {"name": "summary_large_image", "url": "https://t.co/b1G1J8mq9B", "card_type_url": "http://card-type-url-is-deprecated.invalid", "binding_values": {"vanity_url": {"type": "STRING", "string_value": "vaccinestoday.eu", "scribe_key": "vanity_url"}, "domain": {"type": "STRING", "string_value": "www.vaccinestoday.eu"}, "creator": {"type": "USER", "user_value": {"id_str": "205670342", "path": []}}, "site": {"type": "USER", "user_value": {"id_str": "205670342", "path": []}, "scribe_key": "publisher_id"}, "title": {"type": "STRING", "string_value": "Preparing for pandemics: next time we\u2019ll be ready(?) - VaccinesToday"}, "description": {"type": "STRING", "string_value": "In the seventh of a new series of 10 articles \u2013 celebrating our 10th anniversary \u2013 Vaccines Today looks at the lessons the world can learn from COVID-19"}, "thumbnail_image_small": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1446393457497411587/rydnJLfq?format=jpg&name=100x100", "width": 100, "height": 61, "alt": null}}, "thumbnail_image": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1446393457497411587/rydnJLfq?format=jpg&name=240x240", "width": 240, "height": 146, "alt": null}}, "thumbnail_image_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1446393457497411587/rydnJLfq?format=jpg&name=800x320_1", "width": 526, "height": 320, "alt": null}}, "thumbnail_image_x_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1446393457497411587/rydnJLfq?format=png&name=2048x2048_2_exp", "width": 1920, "height": 1167, "alt": null}}, "thumbnail_image_original": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1446393457497411587/rydnJLfq?format=jpg&name=orig", "width": 1920, "height": 1167, "alt": null}}, "summary_photo_image_small": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1446393457497411587/rydnJLfq?format=jpg&name=386x202", "width": 386, "height": 202, "alt": null}}, "summary_photo_image": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1446393457497411587/rydnJLfq?format=jpg&name=600x314", "width": 600, "height": 314, "alt": null}}, "summary_photo_image_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1446393457497411587/rydnJLfq?format=jpg&name=800x419", "width": 800, "height": 419, "alt": null}}, "summary_photo_image_x_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1446393457497411587/rydnJLfq?format=png&name=2048x2048_2_exp", "width": 1920, "height": 1167, "alt": null}}, "summary_photo_image_original": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1446393457497411587/rydnJLfq?format=jpg&name=orig", "width": 1920, "height": 1167, "alt": null}}, "photo_image_full_size_small": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1446393457497411587/rydnJLfq?format=jpg&name=386x202", "width": 386, "height": 202, "alt": null}}, "photo_image_full_size": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1446393457497411587/rydnJLfq?format=jpg&name=600x314", "width": 600, "height": 314, "alt": null}}, "photo_image_full_size_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1446393457497411587/rydnJLfq?format=jpg&name=800x419", "width": 800, "height": 419, "alt": null}}, "photo_image_full_size_x_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1446393457497411587/rydnJLfq?format=png&name=2048x2048_2_exp", "width": 1920, "height": 1167, "alt": null}}, "photo_image_full_size_original": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1446393457497411587/rydnJLfq?format=jpg&name=orig", "width": 1920, "height": 1167, "alt": null}}, "card_url": {"type": "STRING", "string_value": "https://t.co/b1G1J8mq9B", "scribe_key": "card_url"}}, "users": {"205670342": {"id": 205670342, "id_str": "205670342", "name": "VaccinesToday", "screen_name": "VaccinesToday", "location": "Belgium", "description": "An online platform, supported by Vaccines Europe, for discussing vaccination. WHO @VaccineSafetyN\nmember. Tweets by Gary Finnegan https://t.co/7pMLVW9NVt", "url": "http://t.co/nb6qLoEQYp", "entities": {"url": {"urls": [{"url": "http://t.co/nb6qLoEQYp", "expanded_url": "http://www.vaccinestoday.eu", "display_url": "vaccinestoday.eu", "indices": [0, 22]}]}, "description": {"urls": [{"url": "https://t.co/7pMLVW9NVt", "expanded_url": "http://vaccinestoday.eu", "display_url": "vaccinestoday.eu", "indices": [130, 153]}]}}, "protected": false, "followers_count": 16693, "fast_followers_count": 0, "normal_followers_count": 16693, "friends_count": 13486, "listed_count": 310, "created_at": "Thu Oct 21 11:06:14 +0000 2010", "favourites_count": 1627, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 17513, "media_count": 1304, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "F57129", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/805712115654950912/4lN_vrhq_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/805712115654950912/4lN_vrhq_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/205670342/1559226135", "profile_image_extensions_alt_text": null, "profile_image_extensions_media_availability": null, "profile_image_extensions_media_color": {"palette": [{"rgb": {"red": 255, "green": 255, "blue": 255}, "percentage": 69.8}, {"rgb": {"red": 255, "green": 116, "blue": 29}, "percentage": 27.33}, {"rgb": {"red": 252, "green": 187, "blue": 144}, "percentage": 2.2}, {"rgb": {"red": 252, "green": 157, "blue": 93}, "percentage": 0.75}]}, "profile_image_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_banner_extensions_alt_text": null, "profile_banner_extensions_media_availability": null, "profile_banner_extensions_media_color": {"palette": [{"rgb": {"red": 163, "green": 99, "blue": 49}, "percentage": 52.54}, {"rgb": {"red": 185, "green": 155, "blue": 128}, "percentage": 35.16}, {"rgb": {"red": 106, "green": 68, "blue": 46}, "percentage": 6.21}, {"rgb": {"red": 162, "green": 82, "blue": 31}, "percentage": 1.29}, {"rgb": {"red": 89, "green": 47, "blue": 18}, "percentage": 1.22}]}, "profile_banner_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_link_color": "FFAA00", "profile_sidebar_border_color": "F6F29C", "profile_sidebar_fill_color": "FFFFFF", "profile_text_color": "000000", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": false, "default_profile_image": false, "pinned_tweet_ids": [1442494826683850763], "pinned_tweet_ids_str": ["1442494826683850763"], "has_custom_timelines": true, "can_dm": null, "following": null, "follow_request_sent": null, "notifications": null, "muting": null, "blocking": null, "blocked_by": null, "want_retweets": null, "advertiser_account_type": "promotable_user", "advertiser_account_service_levels": ["mms", "smb"], "profile_interstitial_type": "", "business_profile_state": "none", "translator_type": "none", "withheld_in_countries": [], "followed_by": null, "ext": {"highlightedLabel": {"r": {"ok": {}}, "ttl": -1}}, "require_some_consent": false}}, "card_platform": {"platform": {"device": {"name": "Swift", "version": "12"}, "audience": {"name": "production", "bucket": null}}}}, "lang": "en", "supplemental_language": null}}
{"object_type": "TweetRaw", "download_datetime": "2021-10-14T13:13:28.661010+02:00", "raw_value": {"created_at": "Thu Oct 14 11:03:34 +0000 2021", "id": 1448605395199614978, "id_str": "1448605395199614978", "full_text": "RT @WHOAFRO: \ud83d\udcfaLIVE: Join this @WHOAFRO press briefing on the #COVID19 pandemic and vaccine rollout in #Africa. Dr @MoetiTshidi is joined by Dr Aly Ngon Tambdou &amp; Dr Ngozi Erondu (@udnore). https://t.co/zJszLNfcBu", "truncated": false, "display_text_range": [0, 216], "entities": {"hashtags": [{"text": "COVID19", "indices": [61, 69]}, {"text": "Africa", "indices": [102, 109]}], "symbols": [], "user_mentions": [{"screen_name": "WHOAFRO", "name": "WHO African Region", "id": 544389588, "id_str": "544389588", "indices": [3, 11]}, {"screen_name": "WHOAFRO", "name": "WHO African Region", "id": 544389588, "id_str": "544389588", "indices": [30, 38]}, {"screen_name": "MoetiTshidi", "name": "Dr Matshidiso Moeti", "id": 2412739760, "id_str": "2412739760", "indices": [114, 126]}, {"screen_name": "udnore", "name": "Ngozi", "id": 27029742, "id_str": "27029742", "indices": [183, 190]}], "urls": [{"url": "https://t.co/zJszLNfcBu", "expanded_url": "https://twitter.com/i/broadcasts/1kvJpAPWelPxE", "display_url": "twitter.com/i/broadcasts/1\u2026", "indices": [193, 216]}]}, "source": "<a href=\"https://ifttt.com\" rel=\"nofollow\">IFTTT</a>", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user_id": 1181481640532406272, "user_id_str": "1181481640532406272", "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "reply_count": 0, "quote_count": 0, "conversation_id": 1448605395199614978, "conversation_id_str": "1448605395199614978", "favorited": false, "retweeted": false, "possibly_sensitive": false, "possibly_sensitive_editable": true, "card": {"name": "745291183405076480:broadcast", "url": "https://t.co/zJszLNfcBu", "card_type_url": "http://card-type-url-is-deprecated.invalid", "binding_values": {"broadcast_url": {"type": "STRING", "string_value": "https://twitter.com/i/broadcasts/1kvJpAPWelPxE"}, "broadcast_state": {"type": "STRING", "string_value": "RUNNING"}, "broadcast_is_high_latency": {"type": "BOOLEAN", "boolean_value": true}, "broadcast_orientation": {"type": "STRING", "string_value": "0"}, "broadcast_source": {"type": "STRING", "string_value": "livecms"}, "broadcast_height": {"type": "STRING", "string_value": "720"}, "broadcast_width": {"type": "STRING", "string_value": "1280"}, "broadcaster_username": {"type": "STRING", "string_value": "WHOAFRO"}, "broadcaster_display_name": {"type": "STRING", "string_value": "WHO African Region"}, "broadcaster_twitter_id": {"type": "STRING", "string_value": "544389588"}, "broadcast_title": {"type": "STRING", "string_value": "\ud83d\udcfaLIVE: Join this WHO AFRO press briefing on the #COVID19 pandemic and vaccine rollout in #Africa"}, "broadcast_media_id": {"type": "STRING", "string_value": "1448603881072566275"}, "broadcast_media_key": {"type": "STRING", "string_value": "28_1448603881072566275"}, "broadcast_id": {"type": "STRING", "string_value": "1kvJpAPWelPxE"}, "site": {"type": "USER", "user_value": {"id_str": "544389588", "path": []}, "scribe_key": "publisher_id"}, "broadcast_thumbnail_small": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448607185068560384/uNa5s0Ka?format=jpg&name=386x202", "width": 386, "height": 202, "alt": null}}, "broadcast_thumbnail": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448607185068560384/uNa5s0Ka?format=jpg&name=600x314", "width": 600, "height": 314, "alt": null}}, "broadcast_thumbnail_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448607185068560384/uNa5s0Ka?format=jpg&name=800x419", "width": 800, "height": 419, "alt": null}}, "broadcast_thumbnail_x_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448607185068560384/uNa5s0Ka?format=png&name=2048x2048_2_exp", "width": 1280, "height": 720, "alt": null}}, "broadcast_thumbnail_original": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448607185068560384/uNa5s0Ka?format=jpg&name=orig", "width": 1280, "height": 720, "alt": null}}, "card_url": {"type": "STRING", "string_value": "https://t.co/zJszLNfcBu", "scribe_key": "card_url"}}, "users": {"544389588": {"id": 544389588, "id_str": "544389588", "name": "WHO African Region", "screen_name": "WHOAFRO", "location": "Brazzaville, Congo", "description": "Official twitter account for the World Health Organization Regional Office for Africa - WHO/AFRO", "url": "http://t.co/Svn54C6y2G", "entities": {"url": {"urls": [{"url": "http://t.co/Svn54C6y2G", "expanded_url": "http://www.afro.who.int", "display_url": "afro.who.int", "indices": [0, 22]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 253251, "fast_followers_count": 0, "normal_followers_count": 253251, "friends_count": 655, "listed_count": 1043, "created_at": "Tue Apr 03 14:18:21 +0000 2012", "favourites_count": 6449, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": true, "statuses_count": 13170, "media_count": 5920, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1472AA", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/902270882340593664/HoFjfREO_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/902270882340593664/HoFjfREO_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/544389588/1543908740", "profile_image_extensions_alt_text": null, "profile_image_extensions_media_availability": null, "profile_image_extensions_media_color": {"palette": [{"rgb": {"red": 3, "green": 151, "blue": 213}, "percentage": 88.87}, {"rgb": {"red": 208, "green": 235, "blue": 246}, "percentage": 9.86}, {"rgb": {"red": 255, "green": 255, "blue": 248}, "percentage": 0.65}, {"rgb": {"red": 120, "green": 201, "blue": 228}, "percentage": 0.61}]}, "profile_image_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_banner_extensions_media_color": {"palette": [{"rgb": {"red": 49, "green": 33, "blue": 31}, "percentage": 33.72}, {"rgb": {"red": 53, "green": 105, "blue": 156}, "percentage": 28.8}, {"rgb": {"red": 133, "green": 117, "blue": 105}, "percentage": 15.46}, {"rgb": {"red": 206, "green": 213, "blue": 220}, "percentage": 7.38}, {"rgb": {"red": 16, "green": 34, "blue": 57}, "percentage": 3.96}]}, "profile_banner_extensions_alt_text": null, "profile_banner_extensions_media_availability": null, "profile_banner_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_link_color": "0084B4", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "pinned_tweet_ids": [1448604538261458948], "pinned_tweet_ids_str": ["1448604538261458948"], "has_custom_timelines": false, "can_dm": null, "following": null, "follow_request_sent": null, "notifications": null, "muting": null, "blocking": null, "blocked_by": null, "want_retweets": null, "advertiser_account_type": "promotable_user", "advertiser_account_service_levels": ["smb"], "profile_interstitial_type": "", "business_profile_state": "none", "translator_type": "none", "withheld_in_countries": [], "followed_by": null, "ext": {"highlightedLabel": {"r": {"ok": {}}, "ttl": -1}}, "require_some_consent": false}}, "card_platform": {"platform": {"device": {"name": "Swift", "version": "12"}, "audience": {"name": "production", "bucket": null}}}}, "lang": "en", "supplemental_language": null}}
{"object_type": "TweetRaw", "download_datetime": "2021-10-14T13:13:28.661082+02:00", "raw_value": {"created_at": "Thu Oct 14 10:24:57 +0000 2021", "id": 1448595675411894272, "id_str": "1448595675411894272", "full_text": "Is anyone else shitting it about going back to the office/commuting for the first time in nearly 2 years right on top of flu season? \ud83d\ude02 I can already feel the sniffles coming on \ud83e\udd27 #returntooffice #COVID19", "truncated": false, "display_text_range": [0, 203], "entities": {"hashtags": [{"text": "returntooffice", "indices": [179, 194]}, {"text": "COVID19", "indices": [195, 203]}], "symbols": [], "user_mentions": [], "urls": []}, "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user_id": 218260272, "user_id_str": "218260272", "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "reply_count": 0, "quote_count": 0, "conversation_id": 1448595675411894272, "conversation_id_str": "1448595675411894272", "favorited": false, "retweeted": false, "lang": "en", "supplemental_language": null}}
{"object_type": "TweetRaw", "download_datetime": "2021-10-14T13:13:28.661276+02:00", "raw_value": {"created_at": "Thu Oct 14 10:00:18 +0000 2021", "id": 1448589473457999878, "id_str": "1448589473457999878", "full_text": "#Khurda slips into the red zone as the district has reported a steady increase in #COVID19 cases in the past week: Full data here\n\nhttps://t.co/eKnP55FWM3", "truncated": false, "display_text_range": [0, 154], "entities": {"hashtags": [{"text": "Khurda", "indices": [0, 7]}, {"text": "COVID19", "indices": [82, 90]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/eKnP55FWM3", "expanded_url": "https://mudhimixture.com/health/khurda-in-red-zone-as-covid-cases-increase-amid-festive-rush/", "display_url": "mudhimixture.com/health/khurda-\u2026", "indices": [131, 154]}]}, "source": "<a href=\"https://mobile.twitter.com\" rel=\"nofollow\">Twitter Web App</a>", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user_id": 1070009016695148544, "user_id_str": "1070009016695148544", "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "reply_count": 0, "quote_count": 0, "conversation_id": 1448589473457999878, "conversation_id_str": "1448589473457999878", "favorited": false, "retweeted": false, "possibly_sensitive": false, "possibly_sensitive_editable": true, "card": {"name": "summary_large_image", "url": "https://t.co/eKnP55FWM3", "card_type_url": "http://card-type-url-is-deprecated.invalid", "binding_values": {"vanity_url": {"type": "STRING", "string_value": "mudhimixture.com", "scribe_key": "vanity_url"}, "amp": {"type": "BOOLEAN", "boolean_value": true}, "domain": {"type": "STRING", "string_value": "mudhimixture.com"}, "creator": {"type": "USER", "user_value": {"id_str": "1070009016695148544", "path": []}}, "site": {"type": "USER", "user_value": {"id_str": "1070009016695148544", "path": []}, "scribe_key": "publisher_id"}, "title": {"type": "STRING", "string_value": "Khurda In Red Zone As Covid Cases Increase Amid Festive Rush"}, "description": {"type": "STRING", "string_value": "Khurda has slipped into the red zone as the district has reported a steady increase in Covid cases in the past week."}, "thumbnail_image_small": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448589022557736966/TpYUwcpp?format=jpg&name=144x144", "width": 144, "height": 77, "alt": null}}, "thumbnail_image": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448589022557736966/TpYUwcpp?format=jpg&name=280x150", "width": 280, "height": 149, "alt": null}}, "thumbnail_image_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448589022557736966/TpYUwcpp?format=jpg&name=800x320_1", "width": 600, "height": 320, "alt": null}}, "thumbnail_image_x_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448589022557736966/TpYUwcpp?format=png&name=2048x2048_2_exp", "width": 1234, "height": 658, "alt": null}}, "thumbnail_image_original": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448589022557736966/TpYUwcpp?format=jpg&name=orig", "width": 1234, "height": 658, "alt": null}}, "summary_photo_image_small": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448589022557736966/TpYUwcpp?format=jpg&name=386x202", "width": 386, "height": 202, "alt": null}}, "summary_photo_image": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448589022557736966/TpYUwcpp?format=jpg&name=600x314", "width": 600, "height": 314, "alt": null}}, "summary_photo_image_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448589022557736966/TpYUwcpp?format=jpg&name=800x419", "width": 800, "height": 419, "alt": null}}, "summary_photo_image_x_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448589022557736966/TpYUwcpp?format=png&name=2048x2048_2_exp", "width": 1234, "height": 658, "alt": null}}, "summary_photo_image_original": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448589022557736966/TpYUwcpp?format=jpg&name=orig", "width": 1234, "height": 658, "alt": null}}, "photo_image_full_size_small": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448589022557736966/TpYUwcpp?format=jpg&name=386x202", "width": 386, "height": 202, "alt": null}}, "photo_image_full_size": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448589022557736966/TpYUwcpp?format=jpg&name=600x314", "width": 600, "height": 314, "alt": null}}, "photo_image_full_size_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448589022557736966/TpYUwcpp?format=jpg&name=800x419", "width": 800, "height": 419, "alt": null}}, "photo_image_full_size_x_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448589022557736966/TpYUwcpp?format=png&name=2048x2048_2_exp", "width": 1234, "height": 658, "alt": null}}, "photo_image_full_size_original": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448589022557736966/TpYUwcpp?format=jpg&name=orig", "width": 1234, "height": 658, "alt": null}}, "card_url": {"type": "STRING", "string_value": "https://t.co/eKnP55FWM3", "scribe_key": "card_url"}}, "users": {"1070009016695148544": {"id": 1070009016695148544, "id_str": "1070009016695148544", "name": "Mudhi Mixture", "screen_name": "MudhiMixture", "location": "Orissa, India", "description": "Bringing you the latest news, views and trends from in and around Odisha.", "url": "https://t.co/AjgeXTEbcd", "entities": {"url": {"urls": [{"url": "https://t.co/AjgeXTEbcd", "expanded_url": "https://mudhimixture.com", "display_url": "mudhimixture.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 110, "fast_followers_count": 0, "normal_followers_count": 110, "friends_count": 46, "listed_count": 1, "created_at": "Tue Dec 04 17:36:44 +0000 2018", "favourites_count": 5, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 2278, "media_count": 776, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1081113305739972608/depJsQJ6_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1081113305739972608/depJsQJ6_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1070009016695148544/1620295797", "profile_image_extensions_alt_text": null, "profile_image_extensions_media_availability": null, "profile_image_extensions_media_color": {"palette": [{"rgb": {"red": 255, "green": 255, "blue": 255}, "percentage": 93.25}, {"rgb": {"red": 77, "green": 77, "blue": 77}, "percentage": 3.86}, {"rgb": {"red": 56, "green": 194, "blue": 205}, "percentage": 2.89}]}, "profile_image_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_banner_extensions_media_color": {"palette": [{"rgb": {"red": 188, "green": 209, "blue": 211}, "percentage": 47.24}, {"rgb": {"red": 33, "green": 172, "blue": 179}, "percentage": 42.11}, {"rgb": {"red": 84, "green": 84, "blue": 84}, "percentage": 7.87}, {"rgb": {"red": 242, "green": 209, "blue": 208}, "percentage": 1.69}, {"rgb": {"red": 1, "green": 125, "blue": 140}, "percentage": 1.09}]}, "profile_banner_extensions_alt_text": null, "profile_banner_extensions_media_availability": null, "profile_banner_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_link_color": "15BDC8", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "has_extended_profile": false, "default_profile": false, "default_profile_image": false, "pinned_tweet_ids": [], "pinned_tweet_ids_str": [], "has_custom_timelines": false, "can_dm": null, "following": null, "follow_request_sent": null, "notifications": null, "muting": null, "blocking": null, "blocked_by": null, "want_retweets": null, "advertiser_account_type": "promotable_user", "advertiser_account_service_levels": ["smb"], "profile_interstitial_type": "", "business_profile_state": "none", "translator_type": "none", "withheld_in_countries": [], "followed_by": null, "ext": {"highlightedLabel": {"r": {"ok": {}}, "ttl": -1}}, "require_some_consent": false}}, "card_platform": {"platform": {"device": {"name": "Swift", "version": "12"}, "audience": {"name": "production", "bucket": null}}}}, "lang": "en", "supplemental_language": null}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:28.665814+02:00", "raw_value": {"id": 205670342, "id_str": "205670342", "name": "VaccinesToday", "screen_name": "VaccinesToday", "location": "Belgium", "description": "An online platform, supported by Vaccines Europe, for discussing vaccination. WHO @VaccineSafetyN\nmember. Tweets by Gary Finnegan https://t.co/7pMLVW9NVt", "url": "http://t.co/nb6qLoEQYp", "entities": {"url": {"urls": [{"url": "http://t.co/nb6qLoEQYp", "expanded_url": "http://www.vaccinestoday.eu", "display_url": "vaccinestoday.eu", "indices": [0, 22]}]}, "description": {"urls": [{"url": "https://t.co/7pMLVW9NVt", "expanded_url": "http://vaccinestoday.eu", "display_url": "vaccinestoday.eu", "indices": [130, 153]}]}}, "protected": false, "followers_count": 16693, "fast_followers_count": 0, "normal_followers_count": 16693, "friends_count": 13486, "listed_count": 310, "created_at": "Thu Oct 21 11:06:14 +0000 2010", "favourites_count": 1627, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 17513, "media_count": 1304, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "F57129", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/805712115654950912/4lN_vrhq_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/805712115654950912/4lN_vrhq_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/205670342/1559226135", "profile_image_extensions_alt_text": null, "profile_image_extensions_media_availability": null, "profile_image_extensions_media_color": {"palette": [{"rgb": {"red": 255, "green": 255, "blue": 255}, "percentage": 69.8}, {"rgb": {"red": 255, "green": 116, "blue": 29}, "percentage": 27.33}, {"rgb": {"red": 252, "green": 187, "blue": 144}, "percentage": 2.2}, {"rgb": {"red": 252, "green": 157, "blue": 93}, "percentage": 0.75}]}, "profile_image_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_banner_extensions_alt_text": null, "profile_banner_extensions_media_availability": null, "profile_banner_extensions_media_color": {"palette": [{"rgb": {"red": 163, "green": 99, "blue": 49}, "percentage": 52.54}, {"rgb": {"red": 185, "green": 155, "blue": 128}, "percentage": 35.16}, {"rgb": {"red": 106, "green": 68, "blue": 46}, "percentage": 6.21}, {"rgb": {"red": 162, "green": 82, "blue": 31}, "percentage": 1.29}, {"rgb": {"red": 89, "green": 47, "blue": 18}, "percentage": 1.22}]}, "profile_banner_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_link_color": "FFAA00", "profile_sidebar_border_color": "F6F29C", "profile_sidebar_fill_color": "FFFFFF", "profile_text_color": "000000", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": false, "default_profile_image": false, "pinned_tweet_ids": [1442494826683850763], "pinned_tweet_ids_str": ["1442494826683850763"], "has_custom_timelines": true, "can_dm": null, "following": null, "follow_request_sent": null, "notifications": null, "muting": null, "blocking": null, "blocked_by": null, "want_retweets": null, "advertiser_account_type": "promotable_user", "advertiser_account_service_levels": ["mms", "smb"], "profile_interstitial_type": "", "business_profile_state": "none", "translator_type": "none", "withheld_in_countries": [], "followed_by": null, "ext": {"highlightedLabel": {"r": {"ok": {}}, "ttl": -1}}, "require_some_consent": false}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:28.665988+02:00", "raw_value": {"id": 29097819, "id_str": "29097819", "name": "The Epoch Times", "screen_name": "EpochTimes", "location": "New York, USA", "description": "Independent, award-winning reporting based on Truth and Tradition. Free newsletter: https://t.co/0F3JANwb8P | Telegram: https://t.co/Hmk1epY4Kv | Watch: https://t.co/M1G2gEVJmq", "url": "https://t.co/udZgeB9zvZ", "entities": {"url": {"urls": [{"url": "https://t.co/udZgeB9zvZ", "expanded_url": "https://subscribe.epochtimes.com/", "display_url": "subscribe.epochtimes.com", "indices": [0, 23]}]}, "description": {"urls": [{"url": "https://t.co/0F3JANwb8P", "expanded_url": "http://ept.ms/\u2013Newsletters", "display_url": "ept.ms/\u2013Newsletters", "indices": [84, 107]}, {"url": "https://t.co/Hmk1epY4Kv", "expanded_url": "http://t.me/epochtimes", "display_url": "t.me/epochtimes", "indices": [120, 143]}, {"url": "https://t.co/M1G2gEVJmq", "expanded_url": "http://epochtv.com", "display_url": "epochtv.com", "indices": [153, 176]}]}}, "protected": false, "followers_count": 429648, "fast_followers_count": 0, "normal_followers_count": 429648, "friends_count": 80, "listed_count": 2756, "created_at": "Sun Apr 05 23:54:55 +0000 2009", "favourites_count": 36344, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": true, "statuses_count": 206931, "media_count": 13665, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "FFFFFF", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme4/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme4/bg.gif", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/954141295093698560/9x68uifu_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/954141295093698560/9x68uifu_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/29097819/1516660974", "profile_image_extensions_alt_text": null, "profile_image_extensions_media_color": {"palette": [{"rgb": {"red": 0, "green": 58, "blue": 108}, "percentage": 93.18}, {"rgb": {"red": 243, "green": 247, "blue": 248}, "percentage": 6.21}, {"rgb": {"red": 123, "green": 155, "blue": 180}, "percentage": 0.54}]}, "profile_image_extensions_media_availability": null, "profile_image_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_banner_extensions_alt_text": null, "profile_banner_extensions_media_availability": null, "profile_banner_extensions_media_color": {"palette": [{"rgb": {"red": 109, "green": 147, "blue": 196}, "percentage": 27.51}, {"rgb": {"red": 95, "green": 61, "blue": 32}, "percentage": 19.0}, {"rgb": {"red": 183, "green": 198, "blue": 212}, "percentage": 7.81}, {"rgb": {"red": 150, "green": 96, "blue": 36}, "percentage": 7.3}, {"rgb": {"red": 210, "green": 186, "blue": 148}, "percentage": 7.29}]}, "profile_banner_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_link_color": "00218F", "profile_sidebar_border_color": "FFFFFF", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "3C3940", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": false, "default_profile_image": false, "pinned_tweet_ids": [1418577899142225927], "pinned_tweet_ids_str": ["1418577899142225927"], "has_custom_timelines": false, "can_dm": null, "following": null, "follow_request_sent": null, "notifications": null, "muting": null, "blocking": null, "blocked_by": null, "want_retweets": null, "advertiser_account_type": "promotable_user", "advertiser_account_service_levels": ["mms", "smb", "subscription"], "profile_interstitial_type": "", "business_profile_state": "none", "translator_type": "none", "withheld_in_countries": [], "followed_by": null, "ext": {"highlightedLabel": {"r": {"ok": {}}, "ttl": -1}}, "require_some_consent": false}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:28.666103+02:00", "raw_value": {"id": 1339745293, "id_str": "1339745293", "name": "Venkatesh Balaji", "screen_name": "venkateshbala22", "location": "India", "description": "I like to surf the web!", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 62, "fast_followers_count": 0, "normal_followers_count": 62, "friends_count": 32, "listed_count": 11, "created_at": "Tue Apr 09 17:23:47 +0000 2013", "favourites_count": 4370, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 102138, "media_count": 1, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "1A1B1F", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/3504872758/99ac65bcb3436f384f58f0d4b2fc7269_normal.jpeg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/3504872758/99ac65bcb3436f384f58f0d4b2fc7269_normal.jpeg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1339745293/1366809802", "profile_image_extensions_alt_text": null, "profile_image_extensions_media_availability": null, "profile_image_extensions_media_color": {"palette": [{"rgb": {"red": 237, "green": 238, "blue": 230}, "percentage": 40.81}, {"rgb": {"red": 119, "green": 167, "blue": 215}, "percentage": 19.17}, {"rgb": {"red": 202, "green": 125, "blue": 71}, "percentage": 17.64}, {"rgb": {"red": 15, "green": 14, "blue": 12}, "percentage": 9.4}, {"rgb": {"red": 105, "green": 51, "blue": 23}, "percentage": 1.75}]}, "profile_image_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_banner_extensions_alt_text": null, "profile_banner_extensions_media_availability": null, "profile_banner_extensions_media_color": null, "profile_banner_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_link_color": "2FC2EF", "profile_sidebar_border_color": "FFFFFF", "profile_sidebar_fill_color": "252429", "profile_text_color": "666666", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": false, "default_profile_image": false, "pinned_tweet_ids": [], "pinned_tweet_ids_str": [], "has_custom_timelines": true, "can_dm": null, "following": null, "follow_request_sent": null, "notifications": null, "muting": null, "blocking": null, "blocked_by": null, "want_retweets": null, "advertiser_account_type": "none", "advertiser_account_service_levels": [], "profile_interstitial_type": "", "business_profile_state": "none", "translator_type": "none", "withheld_in_countries": [], "followed_by": null, "ext": {"highlightedLabel": {"r": {"ok": {}}, "ttl": -1}}, "require_some_consent": false}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:28.666341+02:00", "raw_value": {"id": 1436200289044873219, "id_str": "1436200289044873219", "name": "Gypsy Free", "screen_name": "GypsyFree333", "location": "Freedonia ", "description": "My words , my thoughts , free speech , sorry not sorry", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 1, "fast_followers_count": 0, "normal_followers_count": 1, "friends_count": 13, "listed_count": 0, "created_at": "Fri Sep 10 05:30:18 +0000 2021", "favourites_count": 137, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 140, "media_count": 3, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "F5F8FA", "profile_background_image_url": null, "profile_background_image_url_https": null, "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1436203249397223424/Km9UH936_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1436203249397223424/Km9UH936_normal.jpg", "profile_image_extensions_media_color": {"palette": [{"rgb": {"red": 0, "green": 0, "blue": 0}, "percentage": 77.48}, {"rgb": {"red": 218, "green": 152, "blue": 98}, "percentage": 9.76}, {"rgb": {"red": 75, "green": 20, "blue": 20}, "percentage": 5.52}, {"rgb": {"red": 196, "green": 154, "blue": 126}, "percentage": 2.21}, {"rgb": {"red": 194, "green": 95, "blue": 45}, "percentage": 1.79}]}, "profile_image_extensions_alt_text": null, "profile_image_extensions_media_availability": null, "profile_image_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": true, "default_profile_image": false, "pinned_tweet_ids": [], "pinned_tweet_ids_str": [], "has_custom_timelines": false, "can_dm": null, "following": null, "follow_request_sent": null, "notifications": null, "muting": null, "blocking": null, "blocked_by": null, "want_retweets": null, "advertiser_account_type": "none", "advertiser_account_service_levels": [], "profile_interstitial_type": "", "business_profile_state": "none", "translator_type": "none", "withheld_in_countries": [], "followed_by": null, "ext": {"highlightedLabel": {"r": {"ok": {}}, "ttl": -1}}, "require_some_consent": false}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:28.666562+02:00", "raw_value": {"id": 1392592369426608134, "id_str": "1392592369426608134", "name": "Mgal", "screen_name": "PRMgal1", "location": "", "description": "MGAL is a highly networked consultancy firm specialized on the Middle East. We provide practical information on issues related to conflict and security in Syria", "url": "https://t.co/s4eqYoQlGR", "entities": {"url": {"urls": [{"url": "https://t.co/s4eqYoQlGR", "expanded_url": "https://www.mgal.me/", "display_url": "mgal.me", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 107, "fast_followers_count": 0, "normal_followers_count": 107, "friends_count": 3, "listed_count": 0, "created_at": "Wed May 12 21:28:05 +0000 2021", "favourites_count": 2, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 49, "media_count": 21, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "F5F8FA", "profile_background_image_url": null, "profile_background_image_url_https": null, "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1392892341359423490/h42G-T-L_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1392892341359423490/h42G-T-L_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1392592369426608134/1620926453", "profile_image_extensions_media_color": {"palette": [{"rgb": {"red": 255, "green": 255, "blue": 255}, "percentage": 84.55}, {"rgb": {"red": 46, "green": 169, "blue": 184}, "percentage": 13.66}, {"rgb": {"red": 71, "green": 93, "blue": 109}, "percentage": 1.79}]}, "profile_image_extensions_alt_text": null, "profile_image_extensions_media_availability": null, "profile_image_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_banner_extensions_media_color": {"palette": [{"rgb": {"red": 255, "green": 255, "blue": 255}, "percentage": 74.82}, {"rgb": {"red": 59, "green": 83, "blue": 103}, "percentage": 18.4}, {"rgb": {"red": 47, "green": 169, "blue": 184}, "percentage": 6.78}]}, "profile_banner_extensions_alt_text": null, "profile_banner_extensions_media_availability": null, "profile_banner_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": true, "default_profile_image": false, "pinned_tweet_ids": [1431342443740467210], "pinned_tweet_ids_str": ["1431342443740467210"], "has_custom_timelines": false, "can_dm": null, "following": null, "follow_request_sent": null, "notifications": null, "muting": null, "blocking": null, "blocked_by": null, "want_retweets": null, "advertiser_account_type": "none", "advertiser_account_service_levels": [], "profile_interstitial_type": "", "business_profile_state": "none", "translator_type": "none", "withheld_in_countries": [], "followed_by": null, "ext": {"highlightedLabel": {"r": {"ok": {}}, "ttl": -1}}, "require_some_consent": false}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:28.666697+02:00", "raw_value": {"id": 1172146759532986370, "id_str": "1172146759532986370", "name": "stockswatch", "screen_name": "stocks_watcher", "location": "", "description": "I'm a small-time investor with not enough capital and too much time on my hands. I don't care. Former trader and Series 7. Tweets are not investment advice.", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 25, "fast_followers_count": 0, "normal_followers_count": 25, "friends_count": 103, "listed_count": 0, "created_at": "Thu Sep 12 13:55:55 +0000 2019", "favourites_count": 620, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 769, "media_count": 12, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "F5F8FA", "profile_background_image_url": null, "profile_background_image_url_https": null, "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1415013971225157637/6uKlM5oc_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1415013971225157637/6uKlM5oc_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1172146759532986370/1634120518", "profile_image_extensions_alt_text": null, "profile_image_extensions_media_availability": null, "profile_image_extensions_media_color": {"palette": [{"rgb": {"red": 208, "green": 183, "blue": 141}, "percentage": 26.63}, {"rgb": {"red": 217, "green": 219, "blue": 226}, "percentage": 26.01}, {"rgb": {"red": 167, "green": 96, "blue": 76}, "percentage": 20.04}, {"rgb": {"red": 50, "green": 35, "blue": 22}, "percentage": 14.22}, {"rgb": {"red": 100, "green": 40, "blue": 29}, "percentage": 3.08}]}, "profile_image_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_banner_extensions_alt_text": null, "profile_banner_extensions_media_availability": null, "profile_banner_extensions_media_color": {"palette": [{"rgb": {"red": 91, "green": 68, "blue": 79}, "percentage": 55.61}, {"rgb": {"red": 131, "green": 113, "blue": 82}, "percentage": 27.94}, {"rgb": {"red": 147, "green": 101, "blue": 84}, "percentage": 4.47}, {"rgb": {"red": 97, "green": 82, "blue": 65}, "percentage": 2.6}, {"rgb": {"red": 223, "green": 185, "blue": 130}, "percentage": 2.49}]}, "profile_banner_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": true, "default_profile_image": false, "pinned_tweet_ids": [], "pinned_tweet_ids_str": [], "has_custom_timelines": false, "can_dm": null, "following": null, "follow_request_sent": null, "notifications": null, "muting": null, "blocking": null, "blocked_by": null, "want_retweets": null, "advertiser_account_type": "none", "advertiser_account_service_levels": [], "profile_interstitial_type": "", "business_profile_state": "none", "translator_type": "none", "withheld_in_countries": [], "followed_by": null, "ext": {"highlightedLabel": {"r": {"ok": {}}, "ttl": -1}}, "require_some_consent": false}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:28.666825+02:00", "raw_value": {"id": 1161571646399893506, "id_str": "1161571646399893506", "name": "Kwentoon", "screen_name": "kwentoon", "location": "", "description": "Mga Kwentong Cartoon Atbp. For kids and kids at heart!", "url": "https://t.co/NtxIEUMRmy", "entities": {"url": {"urls": [{"url": "https://t.co/NtxIEUMRmy", "expanded_url": "http://www.kwentoon.com", "display_url": "kwentoon.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 15, "fast_followers_count": 0, "normal_followers_count": 15, "friends_count": 56, "listed_count": 0, "created_at": "Wed Aug 14 09:33:56 +0000 2019", "favourites_count": 32, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 40, "media_count": 27, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "F5F8FA", "profile_background_image_url": null, "profile_background_image_url_https": null, "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1402951007428956161/rSaQzrvL_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1402951007428956161/rSaQzrvL_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1161571646399893506/1633611578", "profile_image_extensions_alt_text": null, "profile_image_extensions_media_availability": null, "profile_image_extensions_media_color": {"palette": [{"rgb": {"red": 255, "green": 255, "blue": 255}, "percentage": 82.6}, {"rgb": {"red": 43, "green": 74, "blue": 156}, "percentage": 7.42}, {"rgb": {"red": 253, "green": 145, "blue": 78}, "percentage": 7.36}, {"rgb": {"red": 168, "green": 184, "blue": 209}, "percentage": 1.38}, {"rgb": {"red": 246, "green": 184, "blue": 143}, "percentage": 0.89}]}, "profile_image_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_banner_extensions_alt_text": null, "profile_banner_extensions_media_availability": null, "profile_banner_extensions_media_color": {"palette": [{"rgb": {"red": 255, "green": 255, "blue": 255}, "percentage": 75.49}, {"rgb": {"red": 125, "green": 192, "blue": 253}, "percentage": 15.53}, {"rgb": {"red": 65, "green": 163, "blue": 252}, "percentage": 2.38}, {"rgb": {"red": 205, "green": 202, "blue": 182}, "percentage": 1.69}, {"rgb": {"red": 120, "green": 207, "blue": 215}, "percentage": 1.29}]}, "profile_banner_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": true, "default_profile_image": false, "pinned_tweet_ids": [], "pinned_tweet_ids_str": [], "has_custom_timelines": false, "can_dm": null, "following": null, "follow_request_sent": null, "notifications": null, "muting": null, "blocking": null, "blocked_by": null, "want_retweets": null, "advertiser_account_type": "none", "advertiser_account_service_levels": [], "profile_interstitial_type": "", "business_profile_state": "none", "translator_type": "none", "withheld_in_countries": [], "followed_by": null, "ext": {"highlightedLabel": {"r": {"ok": {}}, "ttl": -1}}, "require_some_consent": false}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:28.666931+02:00", "raw_value": {"id": 3184663694, "id_str": "3184663694", "name": "Conservative in Utah", "screen_name": "ConservativeUT", "location": "", "description": "Christian, husband, father, genealogist, movie fan, blogger, and author, and I still have time for a day job.  https://t.co/2qaY85tR7w", "url": "https://t.co/e1ZBZ5tcca", "entities": {"url": {"urls": [{"url": "https://t.co/e1ZBZ5tcca", "expanded_url": "https://serket.blogspot.com", "display_url": "serket.blogspot.com", "indices": [0, 23]}]}, "description": {"urls": [{"url": "https://t.co/2qaY85tR7w", "expanded_url": "https://conservativeinutah.blogspot.com", "display_url": "conservativeinutah.blogspot.com", "indices": [111, 134]}]}}, "protected": false, "followers_count": 50, "fast_followers_count": 0, "normal_followers_count": 50, "friends_count": 92, "listed_count": 5, "created_at": "Mon May 04 01:43:50 +0000 2015", "favourites_count": 24384, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 11391, "media_count": 10, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/595042882618175488/NfwcmdzH_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/595042882618175488/NfwcmdzH_normal.jpg", "profile_image_extensions_alt_text": null, "profile_image_extensions_media_availability": null, "profile_image_extensions_media_color": {"palette": [{"rgb": {"red": 86, "green": 58, "blue": 44}, "percentage": 38.12}, {"rgb": {"red": 159, "green": 240, "blue": 255}, "percentage": 18.06}, {"rgb": {"red": 131, "green": 74, "blue": 67}, "percentage": 16.75}, {"rgb": {"red": 157, "green": 125, "blue": 104}, "percentage": 14.19}, {"rgb": {"red": 232, "green": 209, "blue": 201}, "percentage": 2.14}]}, "profile_image_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": true, "default_profile_image": false, "pinned_tweet_ids": [1364121058639372289], "pinned_tweet_ids_str": ["1364121058639372289"], "has_custom_timelines": false, "can_dm": null, "following": null, "follow_request_sent": null, "notifications": null, "muting": null, "blocking": null, "blocked_by": null, "want_retweets": null, "advertiser_account_type": "promotable_user", "advertiser_account_service_levels": [], "profile_interstitial_type": "", "business_profile_state": "none", "translator_type": "none", "withheld_in_countries": [], "followed_by": null, "ext": {"highlightedLabel": {"r": {"ok": {}}, "ttl": -1}}, "require_some_consent": false}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:28.667046+02:00", "raw_value": {"id": 4777826268, "id_str": "4777826268", "name": "Leong Wai Kit", "screen_name": "LeongWaiKitCNA", "location": "Myanmar", "description": "Myanmar Correspondent - @channelnewsasia TV / radio; posting news alerts, observations, analysis and quirky stuff. DM or email me at waikit@mediacorp.com.sg", "url": "https://t.co/d8U8AHq0HI", "entities": {"url": {"urls": [{"url": "https://t.co/d8U8AHq0HI", "expanded_url": "https://www.facebook.com/LeongWaiKitCNA/", "display_url": "facebook.com/LeongWaiKitCNA/", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 29604, "fast_followers_count": 0, "normal_followers_count": 29604, "friends_count": 734, "listed_count": 211, "created_at": "Mon Jan 18 10:22:50 +0000 2016", "favourites_count": 1624, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": true, "statuses_count": 6712, "media_count": 1324, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "F5F8FA", "profile_background_image_url": null, "profile_background_image_url_https": null, "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/892769762966593538/ZoDOPqnu_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/892769762966593538/ZoDOPqnu_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/4777826268/1457681825", "profile_image_extensions_alt_text": null, "profile_image_extensions_media_availability": null, "profile_image_extensions_media_color": {"palette": [{"rgb": {"red": 60, "green": 67, "blue": 75}, "percentage": 57.81}, {"rgb": {"red": 234, "green": 227, "blue": 230}, "percentage": 28.66}, {"rgb": {"red": 213, "green": 157, "blue": 120}, "percentage": 5.16}, {"rgb": {"red": 99, "green": 55, "blue": 39}, "percentage": 3.34}, {"rgb": {"red": 58, "green": 29, "blue": 33}, "percentage": 0.39}]}, "profile_image_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_banner_extensions_alt_text": null, "profile_banner_extensions_media_availability": null, "profile_banner_extensions_media_color": {"palette": [{"rgb": {"red": 185, "green": 188, "blue": 205}, "percentage": 32.34}, {"rgb": {"red": 48, "green": 35, "blue": 42}, "percentage": 31.72}, {"rgb": {"red": 155, "green": 129, "blue": 115}, "percentage": 23.66}, {"rgb": {"red": 146, "green": 89, "blue": 69}, "percentage": 4.61}, {"rgb": {"red": 239, "green": 209, "blue": 193}, "percentage": 0.64}]}, "profile_banner_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": true, "default_profile_image": false, "pinned_tweet_ids": [1356014919393673220], "pinned_tweet_ids_str": ["1356014919393673220"], "has_custom_timelines": true, "can_dm": null, "following": null, "follow_request_sent": null, "notifications": null, "muting": null, "blocking": null, "blocked_by": null, "want_retweets": null, "advertiser_account_type": "none", "advertiser_account_service_levels": [], "profile_interstitial_type": "", "business_profile_state": "none", "translator_type": "none", "withheld_in_countries": [], "followed_by": null, "ext": {"highlightedLabel": {"r": {"ok": {}}, "ttl": -1}}, "require_some_consent": false}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:28.667162+02:00", "raw_value": {"id": 3794682452, "id_str": "3794682452", "name": "World Health Organization (WHO) Western Pacific", "screen_name": "WHOWPRO", "location": "Manila, Philippines", "description": "World Health Organization @WHO in the Western #Pacific Region, \ud83c\udfe0 to 1.9B in #Asia & #Oceania. See new tweets for updated #COVID19 advice. \u27a1\ufe0f RD @takeshi_kasai", "url": "https://t.co/EblVamM8WW", "entities": {"url": {"urls": [{"url": "https://t.co/EblVamM8WW", "expanded_url": "http://www.who.int/westernpacific", "display_url": "who.int/westernpacific", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 219515, "fast_followers_count": 0, "normal_followers_count": 219515, "friends_count": 1229, "listed_count": 667, "created_at": "Mon Oct 05 18:08:31 +0000 2015", "favourites_count": 6157, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": true, "statuses_count": 10608, "media_count": 6252, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/899826905532125184/yPM5mxkX_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/899826905532125184/yPM5mxkX_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/3794682452/1616740141", "profile_image_extensions_media_color": {"palette": [{"rgb": {"red": 33, "green": 148, "blue": 211}, "percentage": 86.4}, {"rgb": {"red": 208, "green": 231, "blue": 245}, "percentage": 12.77}, {"rgb": {"red": 255, "green": 254, "blue": 249}, "percentage": 0.81}]}, "profile_image_extensions_alt_text": null, "profile_image_extensions_media_availability": null, "profile_image_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_banner_extensions_alt_text": null, "profile_banner_extensions_media_availability": null, "profile_banner_extensions_media_color": {"palette": [{"rgb": {"red": 0, "green": 141, "blue": 207}, "percentage": 64.23}, {"rgb": {"red": 255, "green": 255, "blue": 255}, "percentage": 27.6}, {"rgb": {"red": 92, "green": 122, "blue": 136}, "percentage": 4.54}, {"rgb": {"red": 3, "green": 23, "blue": 33}, "percentage": 2.21}, {"rgb": {"red": 7, "green": 95, "blue": 136}, "percentage": 1.17}]}, "profile_banner_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_link_color": "3B94D9", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "pinned_tweet_ids": [1448472444394639366], "pinned_tweet_ids_str": ["1448472444394639366"], "has_custom_timelines": true, "can_dm": null, "following": null, "follow_request_sent": null, "notifications": null, "muting": null, "blocking": null, "blocked_by": null, "want_retweets": null, "advertiser_account_type": "promotable_user", "advertiser_account_service_levels": ["analytics", "media_studio"], "profile_interstitial_type": "", "business_profile_state": "none", "translator_type": "none", "withheld_in_countries": [], "followed_by": null, "ext": {"highlightedLabel": {"r": {"ok": {}}, "ttl": -1}}, "require_some_consent": false}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:28.667272+02:00", "raw_value": {"id": 1070009016695148544, "id_str": "1070009016695148544", "name": "Mudhi Mixture", "screen_name": "MudhiMixture", "location": "Orissa, India", "description": "Bringing you the latest news, views and trends from in and around Odisha.", "url": "https://t.co/AjgeXTEbcd", "entities": {"url": {"urls": [{"url": "https://t.co/AjgeXTEbcd", "expanded_url": "https://mudhimixture.com", "display_url": "mudhimixture.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 110, "fast_followers_count": 0, "normal_followers_count": 110, "friends_count": 46, "listed_count": 1, "created_at": "Tue Dec 04 17:36:44 +0000 2018", "favourites_count": 5, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 2278, "media_count": 776, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1081113305739972608/depJsQJ6_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1081113305739972608/depJsQJ6_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1070009016695148544/1620295797", "profile_image_extensions_alt_text": null, "profile_image_extensions_media_availability": null, "profile_image_extensions_media_color": {"palette": [{"rgb": {"red": 255, "green": 255, "blue": 255}, "percentage": 93.25}, {"rgb": {"red": 77, "green": 77, "blue": 77}, "percentage": 3.86}, {"rgb": {"red": 56, "green": 194, "blue": 205}, "percentage": 2.89}]}, "profile_image_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_banner_extensions_media_color": {"palette": [{"rgb": {"red": 188, "green": 209, "blue": 211}, "percentage": 47.24}, {"rgb": {"red": 33, "green": 172, "blue": 179}, "percentage": 42.11}, {"rgb": {"red": 84, "green": 84, "blue": 84}, "percentage": 7.87}, {"rgb": {"red": 242, "green": 209, "blue": 208}, "percentage": 1.69}, {"rgb": {"red": 1, "green": 125, "blue": 140}, "percentage": 1.09}]}, "profile_banner_extensions_alt_text": null, "profile_banner_extensions_media_availability": null, "profile_banner_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_link_color": "15BDC8", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "has_extended_profile": false, "default_profile": false, "default_profile_image": false, "pinned_tweet_ids": [], "pinned_tweet_ids_str": [], "has_custom_timelines": false, "can_dm": null, "following": null, "follow_request_sent": null, "notifications": null, "muting": null, "blocking": null, "blocked_by": null, "want_retweets": null, "advertiser_account_type": "promotable_user", "advertiser_account_service_levels": ["smb"], "profile_interstitial_type": "", "business_profile_state": "none", "translator_type": "none", "withheld_in_countries": [], "followed_by": null, "ext": {"highlightedLabel": {"r": {"ok": {}}, "ttl": -1}}, "require_some_consent": false}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:28.667385+02:00", "raw_value": {"id": 218260272, "id_str": "218260272", "name": "Leah Cecilia", "screen_name": "Leahcct", "location": "Ireland , Dublin", "description": "Not all those who wander are lost \ud83d\udda4", "url": "https://t.co/fFWVatQWyb", "entities": {"url": {"urls": [{"url": "https://t.co/fFWVatQWyb", "expanded_url": "https://instagram.com/leahcct", "display_url": "instagram.com/leahcct", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 395, "fast_followers_count": 0, "normal_followers_count": 395, "friends_count": 238, "listed_count": 2, "created_at": "Sun Nov 21 21:27:20 +0000 2010", "favourites_count": 734, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 607, "media_count": 47, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme18/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme18/bg.gif", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1290293624501145603/PoCgq_aQ_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1290293624501145603/PoCgq_aQ_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/218260272/1596215009", "profile_image_extensions_alt_text": null, "profile_image_extensions_media_availability": null, "profile_image_extensions_media_color": {"palette": [{"rgb": {"red": 211, "green": 190, "blue": 186}, "percentage": 42.4}, {"rgb": {"red": 105, "green": 96, "blue": 91}, "percentage": 41.82}, {"rgb": {"red": 44, "green": 40, "blue": 37}, "percentage": 5.02}, {"rgb": {"red": 187, "green": 136, "blue": 109}, "percentage": 4.65}, {"rgb": {"red": 192, "green": 128, "blue": 130}, "percentage": 1.68}]}, "profile_image_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_banner_extensions_alt_text": null, "profile_banner_extensions_media_availability": null, "profile_banner_extensions_media_color": {"palette": [{"rgb": {"red": 56, "green": 54, "blue": 60}, "percentage": 53.56}, {"rgb": {"red": 220, "green": 205, "blue": 116}, "percentage": 32.07}, {"rgb": {"red": 192, "green": 135, "blue": 85}, "percentage": 7.23}, {"rgb": {"red": 129, "green": 117, "blue": 85}, "percentage": 3.67}, {"rgb": {"red": 201, "green": 110, "blue": 82}, "percentage": 1.94}]}, "profile_banner_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_link_color": "89C9FA", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "has_extended_profile": false, "default_profile": false, "default_profile_image": false, "pinned_tweet_ids": [1126088058238119936], "pinned_tweet_ids_str": ["1126088058238119936"], "has_custom_timelines": false, "can_dm": null, "following": null, "follow_request_sent": null, "notifications": null, "muting": null, "blocking": null, "blocked_by": null, "want_retweets": null, "advertiser_account_type": "promotable_user", "advertiser_account_service_levels": ["analytics"], "profile_interstitial_type": "", "business_profile_state": "none", "translator_type": "none", "withheld_in_countries": [], "followed_by": null, "ext": {"highlightedLabel": {"r": {"ok": {}}, "ttl": -1}}, "require_some_consent": false}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:28.667469+02:00", "raw_value": {"id": 1448404903328686084, "id_str": "1448404903328686084", "name": "Jessie Jones", "screen_name": "JessieJ94826768", "location": "", "description": "W o w", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 0, "fast_followers_count": 0, "normal_followers_count": 0, "friends_count": 1, "listed_count": 0, "created_at": "Wed Oct 13 21:47:13 +0000 2021", "favourites_count": 0, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 2, "media_count": 0, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "F5F8FA", "profile_background_image_url": null, "profile_background_image_url_https": null, "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1448404986396823557/A97LxmW8_normal.png", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1448404986396823557/A97LxmW8_normal.png", "profile_image_extensions_alt_text": null, "profile_image_extensions_media_availability": null, "profile_image_extensions_media_color": {"palette": [{"rgb": {"red": 0, "green": 151, "blue": 167}, "percentage": 97.42}, {"rgb": {"red": 255, "green": 255, "blue": 255}, "percentage": 2.58}]}, "profile_image_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": true, "default_profile_image": false, "pinned_tweet_ids": [], "pinned_tweet_ids_str": [], "has_custom_timelines": false, "can_dm": null, "following": null, "follow_request_sent": null, "notifications": null, "muting": null, "blocking": null, "blocked_by": null, "want_retweets": null, "advertiser_account_type": "none", "advertiser_account_service_levels": [], "profile_interstitial_type": "", "business_profile_state": "none", "translator_type": "none", "withheld_in_countries": [], "followed_by": null, "ext": {"highlightedLabel": {"r": {"ok": {}}, "ttl": -1}}, "require_some_consent": false}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:28.667560+02:00", "raw_value": {"id": 1387787081393610753, "id_str": "1387787081393610753", "name": "Czu", "screen_name": "Czu21", "location": "", "description": "", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 1, "fast_followers_count": 0, "normal_followers_count": 1, "friends_count": 91, "listed_count": 0, "created_at": "Thu Apr 29 15:13:27 +0000 2021", "favourites_count": 42, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 393, "media_count": 13, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "F5F8FA", "profile_background_image_url": null, "profile_background_image_url_https": null, "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1404165924320681985/kg9O6n20_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1404165924320681985/kg9O6n20_normal.jpg", "profile_image_extensions_alt_text": null, "profile_image_extensions_media_availability": null, "profile_image_extensions_media_color": {"palette": [{"rgb": {"red": 56, "green": 54, "blue": 55}, "percentage": 65.4}, {"rgb": {"red": 252, "green": 217, "blue": 160}, "percentage": 16.6}, {"rgb": {"red": 102, "green": 66, "blue": 39}, "percentage": 12.54}, {"rgb": {"red": 124, "green": 121, "blue": 108}, "percentage": 3.77}, {"rgb": {"red": 250, "green": 249, "blue": 232}, "percentage": 0.6}]}, "profile_image_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": true, "default_profile_image": false, "pinned_tweet_ids": [1447663621044047874], "pinned_tweet_ids_str": ["1447663621044047874"], "has_custom_timelines": false, "can_dm": null, "following": null, "follow_request_sent": null, "notifications": null, "muting": null, "blocking": null, "blocked_by": null, "want_retweets": null, "advertiser_account_type": "none", "advertiser_account_service_levels": [], "profile_interstitial_type": "", "business_profile_state": "none", "translator_type": "none", "withheld_in_countries": [], "followed_by": null, "ext": {"highlightedLabel": {"r": {"ok": {}}, "ttl": -1}}, "require_some_consent": false}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:28.667684+02:00", "raw_value": {"id": 1267867099533361153, "id_str": "1267867099533361153", "name": "Stockport Evangelical Church", "screen_name": "SEC_England", "location": "Stockport, England", "description": "Our mission is to reach out to the lost in Stockport and to offer the hand of fellowship to other Believers all over the world.", "url": "https://t.co/M8ucQHM90N", "entities": {"url": {"urls": [{"url": "https://t.co/M8ucQHM90N", "expanded_url": "http://stockportevangelical.co.uk", "display_url": "stockportevangelical.co.uk", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 4, "fast_followers_count": 0, "normal_followers_count": 4, "friends_count": 3, "listed_count": 0, "created_at": "Tue Jun 02 17:14:17 +0000 2020", "favourites_count": 4, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 210, "media_count": 146, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "F5F8FA", "profile_background_image_url": null, "profile_background_image_url_https": null, "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1267867245587374080/2C0UVWL4_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1267867245587374080/2C0UVWL4_normal.jpg", "profile_image_extensions_alt_text": null, "profile_image_extensions_media_availability": null, "profile_image_extensions_media_color": {"palette": [{"rgb": {"red": 255, "green": 255, "blue": 255}, "percentage": 75.95}, {"rgb": {"red": 16, "green": 1, "blue": 98}, "percentage": 14.89}, {"rgb": {"red": 21, "green": 28, "blue": 52}, "percentage": 5.26}, {"rgb": {"red": 127, "green": 125, "blue": 127}, "percentage": 1.07}, {"rgb": {"red": 132, "green": 118, "blue": 159}, "percentage": 1.03}]}, "profile_image_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": true, "default_profile_image": false, "pinned_tweet_ids": [], "pinned_tweet_ids_str": [], "has_custom_timelines": false, "can_dm": null, "following": null, "follow_request_sent": null, "notifications": null, "muting": null, "blocking": null, "blocked_by": null, "want_retweets": null, "advertiser_account_type": "none", "advertiser_account_service_levels": [], "profile_interstitial_type": "", "business_profile_state": "none", "translator_type": "none", "withheld_in_countries": [], "followed_by": null, "ext": {"highlightedLabel": {"r": {"ok": {}}, "ttl": -1}}, "require_some_consent": false}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:28.667800+02:00", "raw_value": {"id": 1181481640532406272, "id_str": "1181481640532406272", "name": "Abhishek Puri", "screen_name": "radoncnotes", "location": "", "description": "An average #radonc with extraordinary interests. #radiating common sense in #AI #ML \n\nBest among equals.\n\n #blog: https://t.co/2gCIxkhQOi\n \nRetweets are an endorsement.", "url": "https://t.co/X40Wgwewgv", "entities": {"url": {"urls": [{"url": "https://t.co/X40Wgwewgv", "expanded_url": "https://radoncnotes.com", "display_url": "radoncnotes.com", "indices": [0, 23]}]}, "description": {"urls": [{"url": "https://t.co/2gCIxkhQOi", "expanded_url": "http://radoncnotes.com", "display_url": "radoncnotes.com", "indices": [114, 137]}]}}, "protected": false, "followers_count": 391, "fast_followers_count": 0, "normal_followers_count": 391, "friends_count": 203, "listed_count": 6, "created_at": "Tue Oct 08 08:09:39 +0000 2019", "favourites_count": 1528, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 32454, "media_count": 1501, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "F5F8FA", "profile_background_image_url": null, "profile_background_image_url_https": null, "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1435790304825643008/Yac_GzJH_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1435790304825643008/Yac_GzJH_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1181481640532406272/1570522618", "profile_image_extensions_alt_text": null, "profile_image_extensions_media_availability": null, "profile_image_extensions_media_color": {"palette": [{"rgb": {"red": 210, "green": 226, "blue": 208}, "percentage": 51.39}, {"rgb": {"red": 48, "green": 44, "blue": 41}, "percentage": 21.52}, {"rgb": {"red": 186, "green": 140, "blue": 123}, "percentage": 17.63}, {"rgb": {"red": 103, "green": 64, "blue": 48}, "percentage": 2.62}, {"rgb": {"red": 49, "green": 50, "blue": 69}, "percentage": 1.94}]}, "profile_image_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_banner_extensions_media_color": {"palette": [{"rgb": {"red": 240, "green": 243, "blue": 233}, "percentage": 66.64}, {"rgb": {"red": 237, "green": 88, "blue": 53}, "percentage": 30.29}, {"rgb": {"red": 237, "green": 166, "blue": 141}, "percentage": 1.93}, {"rgb": {"red": 166, "green": 75, "blue": 66}, "percentage": 0.67}, {"rgb": {"red": 243, "green": 139, "blue": 79}, "percentage": 0.44}]}, "profile_banner_extensions_alt_text": null, "profile_banner_extensions_media_availability": null, "profile_banner_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": true, "default_profile_image": false, "pinned_tweet_ids": [], "pinned_tweet_ids_str": [], "has_custom_timelines": true, "can_dm": null, "following": null, "follow_request_sent": null, "notifications": null, "muting": null, "blocking": null, "blocked_by": null, "want_retweets": null, "advertiser_account_type": "promotable_user", "advertiser_account_service_levels": ["analytics"], "profile_interstitial_type": "", "business_profile_state": "none", "translator_type": "none", "withheld_in_countries": [], "followed_by": null, "ext": {"highlightedLabel": {"r": {"ok": {}}, "ttl": -1}}, "require_some_consent": false}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:28.667921+02:00", "raw_value": {"id": 3171641498, "id_str": "3171641498", "name": "Kalinga TV", "screen_name": "Kalingatv", "location": "Odisha, India", "description": "When it comes to Breaking News, Kalinga TV leads the Way with 24x7 Coverage.", "url": "https://t.co/lrXWPUyDYx", "entities": {"url": {"urls": [{"url": "https://t.co/lrXWPUyDYx", "expanded_url": "http://kalingatv.com", "display_url": "kalingatv.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 133935, "fast_followers_count": 0, "normal_followers_count": 133935, "friends_count": 184, "listed_count": 95, "created_at": "Sat Apr 25 04:37:23 +0000 2015", "favourites_count": 474, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 101482, "media_count": 33515, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1032290581043732480/JnVinurZ_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1032290581043732480/JnVinurZ_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/3171641498/1583318032", "profile_image_extensions_media_color": {"palette": [{"rgb": {"red": 179, "green": 41, "blue": 28}, "percentage": 87.05}, {"rgb": {"red": 253, "green": 253, "blue": 251}, "percentage": 8.46}, {"rgb": {"red": 199, "green": 98, "blue": 86}, "percentage": 2.34}, {"rgb": {"red": 228, "green": 180, "blue": 176}, "percentage": 0.69}, {"rgb": {"red": 62, "green": 158, "blue": 51}, "percentage": 0.6}]}, "profile_image_extensions_alt_text": null, "profile_image_extensions_media_availability": null, "profile_image_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_banner_extensions_alt_text": null, "profile_banner_extensions_media_availability": null, "profile_banner_extensions_media_color": {"palette": [{"rgb": {"red": 195, "green": 195, "blue": 197}, "percentage": 85.79}, {"rgb": {"red": 166, "green": 44, "blue": 34}, "percentage": 7.27}, {"rgb": {"red": 188, "green": 122, "blue": 119}, "percentage": 2.47}, {"rgb": {"red": 49, "green": 49, "blue": 49}, "percentage": 1.16}, {"rgb": {"red": 166, "green": 197, "blue": 213}, "percentage": 0.78}]}, "profile_banner_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_link_color": "19CF86", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "has_extended_profile": false, "default_profile": false, "default_profile_image": false, "pinned_tweet_ids": [], "pinned_tweet_ids_str": [], "has_custom_timelines": true, "can_dm": null, "following": null, "follow_request_sent": null, "notifications": null, "muting": null, "blocking": null, "blocked_by": null, "want_retweets": null, "advertiser_account_type": "promotable_user", "advertiser_account_service_levels": ["analytics"], "profile_interstitial_type": "", "business_profile_state": "none", "translator_type": "none", "withheld_in_countries": [], "followed_by": null, "ext": {"highlightedLabel": {"r": {"ok": {}}, "ttl": -1}}, "require_some_consent": false}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:28.668032+02:00", "raw_value": {"id": 57684279, "id_str": "57684279", "name": "Hoorye Mashadi", "screen_name": "Hoorye", "location": "", "description": "\u062f\u0631 \u0628\u0631\u0647\u0648\u062a \u0627\u0633\u062a\u0628\u062f\u0627\u062f \u0648 \u0627\u062e\u062a\u0646\u0627\u0642\u060c \u0622\u0646 \u0639\u0634\u0642 \u0628\u0647 \u0622\u0632\u0627\u062f\u06cc \u06a9\u0647 \u0648\u062c\u0648\u062f \u0627\u0646\u0633\u0627\u0646\u06cc \u0631\u0627 \u062a\u0633\u062e\u06cc\u0631 \u0645\u06cc\u200c\u06a9\u0646\u062f\u060c \u0645\u0627\u06cc\u06cc\u0645. \u062f\u0631 \u062a\u06cc\u0631\u06af\u06cc \u062f\u0631\u0648\u063a \u0648 \u0631\u06cc\u0627 \u0648 \u0628\u06cc\u06af\u0627\u0646\u06af\u06cc\u060c \u0622\u0646 \u0641\u062f\u0627 \u0648 \u0635\u062f\u0627\u0642\u062a \u06a9\u0647 \u0631\u0627\u0647 \u0645\u0642\u0627\u0648\u0645\u062a \u0631\u0627 \u0645\u06cc\u200c\u06af\u0634\u0627\u06cc\u062f\u060c \u0645\u0627\u06cc\u06cc\u0645", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 553, "fast_followers_count": 0, "normal_followers_count": 553, "friends_count": 224, "listed_count": 0, "created_at": "Fri Jul 17 16:20:14 +0000 2009", "favourites_count": 12380, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 17270, "media_count": 2644, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1241319907687620615/Ak2r9qLa_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1241319907687620615/Ak2r9qLa_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/57684279/1580314322", "profile_image_extensions_alt_text": null, "profile_image_extensions_media_availability": null, "profile_image_extensions_media_color": {"palette": [{"rgb": {"red": 180, "green": 175, "blue": 180}, "percentage": 46.28}, {"rgb": {"red": 161, "green": 18, "blue": 12}, "percentage": 20.46}, {"rgb": {"red": 135, "green": 113, "blue": 95}, "percentage": 9.38}, {"rgb": {"red": 121, "green": 45, "blue": 8}, "percentage": 4.97}, {"rgb": {"red": 183, "green": 58, "blue": 74}, "percentage": 3.44}]}, "profile_image_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_banner_extensions_alt_text": null, "profile_banner_extensions_media_availability": null, "profile_banner_extensions_media_color": {"palette": [{"rgb": {"red": 159, "green": 158, "blue": 158}, "percentage": 44.48}, {"rgb": {"red": 112, "green": 134, "blue": 167}, "percentage": 22.0}, {"rgb": {"red": 223, "green": 189, "blue": 158}, "percentage": 16.52}, {"rgb": {"red": 200, "green": 133, "blue": 120}, "percentage": 9.01}, {"rgb": {"red": 226, "green": 182, "blue": 109}, "percentage": 2.74}]}, "profile_banner_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_link_color": "E81C4F", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "pinned_tweet_ids": [], "pinned_tweet_ids_str": [], "has_custom_timelines": true, "can_dm": null, "following": null, "follow_request_sent": null, "notifications": null, "muting": null, "blocking": null, "blocked_by": null, "want_retweets": null, "advertiser_account_type": "promotable_user", "advertiser_account_service_levels": ["analytics"], "profile_interstitial_type": "", "business_profile_state": "none", "translator_type": "none", "withheld_in_countries": [], "followed_by": null, "ext": {"highlightedLabel": {"r": {"ok": {}}, "ttl": -1}}, "require_some_consent": false}}
last_scrap_zero False is_cursor True
need_guest_token True
run request RequestDetails(http_method=<HttpMethod.GET: 1>, url='https://twitter.com/i/api/2/search/adaptive.json', headers={'Authorization': 'Bearer AAAAAAAAAAAAAAAAAAAAANRILgAAAAAAnNwIzUejRCOuH5E6I8xnZz4puTs%3D1Zv7ttfk8LF81IUq16cHjhLTvJu4FA33AGWWjCpTnA', 'x-guest-token': '1448607857604272138'}, params={'include_profile_interstitial_type': '1', 'include_blocking': '1', 'include_blocked_by': '1', 'include_followed_by': '1', 'include_want_retweets': '1', 'include_mute_edge': '1', 'include_can_dm': '1', 'include_can_media_tag': '1', 'skip_status': '1', 'cards_platform': 'Web-12', 'include_cards': '1', 'include_ext_alt_text': 'true', 'include_quote_count': 'true', 'include_reply_count': '1', 'tweet_mode': 'extended', 'include_entities': 'true', 'include_user_entities': 'true', 'include_ext_media_color': 'true', 'include_ext_media_availability': 'true', 'send_error_codes': 'true', 'simple_quoted_tweet': 'true', 'q': '#covid19', 'count': 20, 'query_source': 'typed_query', 'pc': '1', 'spelling_corrections': '1', 'ext': 'mediaStats,highlightedLabel,voiceInfo', 'cursor': 'scroll:thGAVUV0VFVBYBFoCUsq31n6iaKBIYzAUAAAAALo2zCAAAAHYAAAAAAAAVfAAAAAcAAABWIEQIAAAiAQMIQEYELEQQAHCAAEEACAAAAAEBgACAoYCJQAgQAIRJgDEAlAAACAADCgAMEAAAIQAAAgggwWRCCIWQEgmlBAAACCApaAEAAAEBAAKDGEkAAACAAAAtARCCBFAYAgABAIAgEQADVEAYKAAAAATQBAEBAByJDAQEAAEAABAMIgCFJQKCCBEFAAAGEARAJCAQgBCECCipgAAAIRAABEIAAEESACAAAAQAQAQgABAAoQIgAACBBgAVADCAAAIIAAEAAACAAAAgACGARAECAAIgBAAAAyBABYAAIAAIBaAIsAMEAIQUAAQABCQBACQGkmAhAACxGANIQQAEAgQEAwCIgCAAgAAAAAAIAIAABAwAEAACCKAAOAASGAAJGkTBCAkAIgDBhFQAAgAYQBUCAgCABUAABAGQpABAIACIREQIIBRMAAgwAAAQEAACAAICAoAAAmACFJAAIIAEwwIiBAAAAAAgQAICBACINGQgQAGBCCBIAIIQAEAkCgAAmBAAEgAEIQBRAIOEECECQCAALBCAAAIAIAAAABAAGQBAoDSAURKAmAEgAIIAAEAGMSgAAECA7EAAGAASAQhAKAAAQAEEQIgAAAAAAADkkQMIgCApQUAACADCAKAACAOAEBAAgAAgAAIQQIAAkGADDAECAAQCAAAsgGICcAYQAACAiCSQYQABQwAAQAMFABkSAAgCAAAAAGAIACQQEIAwgwCAEkAAABAIAFQgIBRAUFQ0EAQAAEEAABQAEgBCRAwAgAAAAgAAQgAjA0aAAgOkQAiEAAAAAoBIIAAAQCCqEABgAKIQFgQAzQAAgBBAAgBgIRACAAAAABBAAAAAAEAAMIAAAAQAhEQAQBAAaIAAIADAIATEAAgAEAAAAAggpACAQKACCSAJKEIAIAAg8AABCGEVoPZ5FYCJehgGVE9QSUNTNewBFQoVAAA='}, timeout=20)
200
{"object_type": "TweetRaw", "download_datetime": "2021-10-14T13:13:29.524847+02:00", "raw_value": {"created_at": "Thu Oct 14 10:40:00 +0000 2021", "id": 1448599462796939269, "id_str": "1448599462796939269", "full_text": "Singing legend #SmokeyRobinson details his battle with #COVID19 \n\nhttps://t.co/OwHx6gBBae", "truncated": false, "display_text_range": [0, 89], "entities": {"hashtags": [{"text": "SmokeyRobinson", "indices": [15, 30]}, {"text": "COVID19", "indices": [55, 63]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/OwHx6gBBae", "expanded_url": "https://blacgoss.com/smokey-robinson-was-rushed-to-hospital-with-covid-i-couldve-died/", "display_url": "blacgoss.com/smokey-robinso\u2026", "indices": [66, 89]}]}, "source": "<a href=\"https://mobile.twitter.com\" rel=\"nofollow\">Twitter Web App</a>", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user_id": 1095815704195010560, "user_id_str": "1095815704195010560", "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "reply_count": 0, "quote_count": 0, "conversation_id": 1448599462796939269, "conversation_id_str": "1448599462796939269", "favorited": false, "retweeted": false, "possibly_sensitive": false, "possibly_sensitive_editable": true, "card": {"name": "summary_large_image", "url": "https://t.co/OwHx6gBBae", "card_type_url": "http://card-type-url-is-deprecated.invalid", "binding_values": {"vanity_url": {"type": "STRING", "string_value": "blacgoss.com", "scribe_key": "vanity_url"}, "amp": {"type": "BOOLEAN", "boolean_value": true}, "domain": {"type": "STRING", "string_value": "blacgoss.com"}, "creator": {"type": "USER", "user_value": {"id_str": "1095815704195010560", "path": []}}, "site": {"type": "USER", "user_value": {"id_str": "1095815704195010560", "path": []}, "scribe_key": "publisher_id"}, "title": {"type": "STRING", "string_value": "Smokey Robinson was rushed to hospital with COVID: \u2018I could\u2019ve died\u2019 - BlacGoss"}, "description": {"type": "STRING", "string_value": "Motown legend Smokey Robinson feared he would never sing again after his terrifying battle the coronavirus late last year. Robinson has revealed he spent"}, "thumbnail_image_small": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448463080355139589/YIWFxE5i?format=png&name=100x100", "width": 100, "height": 66, "alt": null}}, "thumbnail_image": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448463080355139589/YIWFxE5i?format=png&name=280x150", "width": 226, "height": 150, "alt": null}}, "thumbnail_image_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448463080355139589/YIWFxE5i?format=png&name=800x320_1", "width": 482, "height": 320, "alt": null}}, "thumbnail_image_x_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448463080355139589/YIWFxE5i?format=png&name=2048x2048_2_exp", "width": 800, "height": 531, "alt": null}}, "thumbnail_image_original": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448463080355139589/YIWFxE5i?format=png&name=orig", "width": 800, "height": 531, "alt": null}}, "summary_photo_image_small": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448463080355139589/YIWFxE5i?format=png&name=386x202", "width": 386, "height": 202, "alt": null}}, "summary_photo_image": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448463080355139589/YIWFxE5i?format=png&name=600x314", "width": 600, "height": 314, "alt": null}}, "summary_photo_image_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448463080355139589/YIWFxE5i?format=png&name=800x419", "width": 800, "height": 419, "alt": null}}, "summary_photo_image_x_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448463080355139589/YIWFxE5i?format=png&name=2048x2048_2_exp", "width": 800, "height": 531, "alt": null}}, "summary_photo_image_original": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448463080355139589/YIWFxE5i?format=png&name=orig", "width": 800, "height": 531, "alt": null}}, "photo_image_full_size_small": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448463080355139589/YIWFxE5i?format=png&name=386x202", "width": 386, "height": 202, "alt": null}}, "photo_image_full_size": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448463080355139589/YIWFxE5i?format=png&name=600x314", "width": 600, "height": 314, "alt": null}}, "photo_image_full_size_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448463080355139589/YIWFxE5i?format=png&name=800x419", "width": 800, "height": 419, "alt": null}}, "photo_image_full_size_x_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448463080355139589/YIWFxE5i?format=png&name=2048x2048_2_exp", "width": 800, "height": 531, "alt": null}}, "photo_image_full_size_original": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448463080355139589/YIWFxE5i?format=png&name=orig", "width": 800, "height": 531, "alt": null}}, "card_url": {"type": "STRING", "string_value": "https://t.co/OwHx6gBBae", "scribe_key": "card_url"}}, "users": {"1095815704195010560": {"id": 1095815704195010560, "id_str": "1095815704195010560", "name": "Blac Goss", "screen_name": "Blacgoss", "location": "", "description": "Follow Blac Goss for the latest Celebrity news and more from around the World. Visit the website \u2b07\ufe0f IG: https://t.co/mOANBiA3PQ", "url": "https://t.co/mvr3m5k8R8", "entities": {"url": {"urls": [{"url": "https://t.co/mvr3m5k8R8", "expanded_url": "https://blacgoss.com", "display_url": "blacgoss.com", "indices": [0, 23]}]}, "description": {"urls": [{"url": "https://t.co/mOANBiA3PQ", "expanded_url": "http://instagram.com/blacgoss_/", "display_url": "instagram.com/blacgoss_/", "indices": [104, 127]}]}}, "protected": false, "followers_count": 159, "fast_followers_count": 0, "normal_followers_count": 159, "friends_count": 297, "listed_count": 2, "created_at": "Wed Feb 13 22:43:17 +0000 2019", "favourites_count": 1014, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 6915, "media_count": 1094, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1102208364661092358/0BRwCT7J_normal.png", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1102208364661092358/0BRwCT7J_normal.png", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1095815704195010560/1610129014", "profile_image_extensions_alt_text": null, "profile_image_extensions_media_availability": null, "profile_image_extensions_media_color": {"palette": [{"rgb": {"red": 255, "green": 255, "blue": 255}, "percentage": 91.88}, {"rgb": {"red": 2, "green": 2, "blue": 2}, "percentage": 3.39}, {"rgb": {"red": 246, "green": 36, "blue": 34}, "percentage": 2.86}, {"rgb": {"red": 241, "green": 112, "blue": 111}, "percentage": 0.79}, {"rgb": {"red": 243, "green": 168, "blue": 168}, "percentage": 0.48}]}, "profile_image_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_banner_extensions_alt_text": null, "profile_banner_extensions_media_availability": null, "profile_banner_extensions_media_color": {"palette": [{"rgb": {"red": 40, "green": 27, "blue": 26}, "percentage": 38.68}, {"rgb": {"red": 166, "green": 116, "blue": 94}, "percentage": 21.06}, {"rgb": {"red": 222, "green": 221, "blue": 236}, "percentage": 11.25}, {"rgb": {"red": 127, "green": 20, "blue": 22}, "percentage": 6.98}, {"rgb": {"red": 104, "green": 54, "blue": 37}, "percentage": 4.61}]}, "profile_banner_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_link_color": "E81C4F", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "has_extended_profile": false, "default_profile": false, "default_profile_image": false, "pinned_tweet_ids": [1211703345439813632], "pinned_tweet_ids_str": ["1211703345439813632"], "has_custom_timelines": false, "can_dm": null, "following": null, "follow_request_sent": null, "notifications": null, "muting": null, "blocking": null, "blocked_by": null, "want_retweets": null, "advertiser_account_type": "promotable_user", "advertiser_account_service_levels": ["smb"], "profile_interstitial_type": "", "business_profile_state": "none", "translator_type": "none", "withheld_in_countries": [], "followed_by": null, "ext": {"highlightedLabel": {"r": {"ok": {}}, "ttl": -1}}, "require_some_consent": false}}, "card_platform": {"platform": {"device": {"name": "Swift", "version": "12"}, "audience": {"name": "production", "bucket": null}}}}, "lang": "en", "supplemental_language": null}}
{"object_type": "TweetRaw", "download_datetime": "2021-10-14T13:13:29.525098+02:00", "raw_value": {"created_at": "Thu Oct 14 05:30:09 +0000 2021", "id": 1448521487552421889, "id_str": "1448521487552421889", "full_text": "@SFGate Deaths and hospitalizations are not the only potential negative outcomes for infection with #COVID19 Many people with clinically \"mild\" cases develop #LongCovid \nhttps://t.co/0r4AhEKArw", "truncated": false, "display_text_range": [8, 193], "entities": {"hashtags": [{"text": "COVID19", "indices": [100, 108]}, {"text": "LongCovid", "indices": [158, 168]}], "symbols": [], "user_mentions": [{"screen_name": "SFGate", "name": "SFGATE", "id": 36511031, "id_str": "36511031", "indices": [0, 7]}], "urls": [{"url": "https://t.co/0r4AhEKArw", "expanded_url": "https://health.ucdavis.edu/health-news/newsroom/studies-show-long-haul-covid-19-afflicts-1-in-4-covid-19-patients-regardless-of-severity/2021/03#.YWfAGgne5Eg.twitter", "display_url": "health.ucdavis.edu/health-news/ne\u2026", "indices": [170, 193]}]}, "source": "<a href=\"https://mobile.twitter.com\" rel=\"nofollow\">Twitter Web App</a>", "in_reply_to_status_id": 1448247806674669574, "in_reply_to_status_id_str": "1448247806674669574", "in_reply_to_user_id": 36511031, "in_reply_to_user_id_str": "36511031", "in_reply_to_screen_name": "SFGate", "user_id": 748744688, "user_id_str": "748744688", "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "reply_count": 0, "quote_count": 0, "conversation_id": 1448247806674669574, "conversation_id_str": "1448247806674669574", "favorited": false, "retweeted": false, "possibly_sensitive": false, "possibly_sensitive_editable": true, "card": {"name": "summary", "url": "https://t.co/0r4AhEKArw", "card_type_url": "http://card-type-url-is-deprecated.invalid", "binding_values": {"vanity_url": {"type": "STRING", "string_value": "health.ucdavis.edu", "scribe_key": "vanity_url"}, "domain": {"type": "STRING", "string_value": "health.ucdavis.edu"}, "title": {"type": "STRING", "string_value": "Studies show long-haul COVID-19 afflicts 1 in 4 COVID-19 patients, regardless of severity"}, "thumbnail_image_alt_text": {"type": "STRING", "string_value": "UC Davis Health\u2019s Post-COVID-19 Clinic has seen 130-140 long haulers, many who had very mild COVID cases."}, "description": {"type": "STRING", "string_value": "People who catch COVID-19 have at least a one in four chance of developing long-haul COVID with symptoms lasting months, even if they have very mild cases, are young and are in excellent health, new..."}, "thumbnail_image_small": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448178984223608837/oOJWG1kr?format=jpg&name=100x100_2", "width": 100, "height": 100, "alt": "UC Davis Health\u2019s Post-COVID-19 Clinic has seen 130-140 long haulers, many who had very mild COVID cases."}}, "thumbnail_image": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448178984223608837/oOJWG1kr?format=jpg&name=120x120", "width": 113, "height": 113, "alt": "UC Davis Health\u2019s Post-COVID-19 Clinic has seen 130-140 long haulers, many who had very mild COVID cases."}}, "thumbnail_image_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448178984223608837/oOJWG1kr?format=jpg&name=120x120", "width": 113, "height": 113, "alt": "UC Davis Health\u2019s Post-COVID-19 Clinic has seen 130-140 long haulers, many who had very mild COVID cases."}}, "thumbnail_image_x_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448178984223608837/oOJWG1kr?format=png&name=2048x2048_2_exp", "width": 165, "height": 113, "alt": "UC Davis Health\u2019s Post-COVID-19 Clinic has seen 130-140 long haulers, many who had very mild COVID cases."}}, "thumbnail_image_original": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448178984223608837/oOJWG1kr?format=jpg&name=orig", "width": 165, "height": 113, "alt": "UC Davis Health\u2019s Post-COVID-19 Clinic has seen 130-140 long haulers, many who had very mild COVID cases."}}, "card_url": {"type": "STRING", "string_value": "https://t.co/0r4AhEKArw", "scribe_key": "card_url"}}, "card_platform": {"platform": {"device": {"name": "Swift", "version": "12"}, "audience": {"name": "production", "bucket": null}}}}, "lang": "en", "supplemental_language": null}}
{"object_type": "TweetRaw", "download_datetime": "2021-10-14T13:13:29.525318+02:00", "raw_value": {"created_at": "Thu Oct 14 09:42:05 +0000 2021", "id": 1448584886609195011, "id_str": "1448584886609195011", "full_text": "Come on Kyrie.......get the vaccine.  #KyrieIrving #COVID19 https://t.co/uwmNlI1loc", "truncated": false, "display_text_range": [0, 59], "entities": {"hashtags": [{"text": "KyrieIrving", "indices": [38, 50]}, {"text": "COVID19", "indices": [51, 59]}], "symbols": [], "user_mentions": [], "urls": [], "media": [{"id": 1448584884977610753, "id_str": "1448584884977610753", "indices": [60, 83], "media_url": "http://pbs.twimg.com/media/FBpoRygXMAEpm5S.jpg", "media_url_https": "https://pbs.twimg.com/media/FBpoRygXMAEpm5S.jpg", "url": "https://t.co/uwmNlI1loc", "display_url": "pic.twitter.com/uwmNlI1loc", "expanded_url": "https://twitter.com/allgrimlock/status/1448584886609195011/photo/1", "type": "photo", "original_info": {"width": 1080, "height": 725, "focus_rects": [{"x": 0, "y": 120, "h": 605, "w": 1080}, {"x": 0, "y": 0, "h": 725, "w": 725}, {"x": 32, "y": 0, "h": 725, "w": 636}, {"x": 169, "y": 0, "h": 725, "w": 363}, {"x": 0, "y": 0, "h": 725, "w": 1080}]}, "sizes": {"small": {"w": 680, "h": 456, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 1080, "h": 725, "resize": "fit"}, "medium": {"w": 1080, "h": 725, "resize": "fit"}}}]}, "extended_entities": {"media": [{"id": 1448584884977610753, "id_str": "1448584884977610753", "indices": [60, 83], "media_url": "http://pbs.twimg.com/media/FBpoRygXMAEpm5S.jpg", "media_url_https": "https://pbs.twimg.com/media/FBpoRygXMAEpm5S.jpg", "url": "https://t.co/uwmNlI1loc", "display_url": "pic.twitter.com/uwmNlI1loc", "expanded_url": "https://twitter.com/allgrimlock/status/1448584886609195011/photo/1", "type": "photo", "original_info": {"width": 1080, "height": 725, "focus_rects": [{"x": 0, "y": 120, "h": 605, "w": 1080}, {"x": 0, "y": 0, "h": 725, "w": 725}, {"x": 32, "y": 0, "h": 725, "w": 636}, {"x": 169, "y": 0, "h": 725, "w": 363}, {"x": 0, "y": 0, "h": 725, "w": 1080}]}, "sizes": {"small": {"w": 680, "h": 456, "resize": "fit"}, "thumb": {"w": 150, "h": 150, "resize": "crop"}, "large": {"w": 1080, "h": 725, "resize": "fit"}, "medium": {"w": 1080, "h": 725, "resize": "fit"}}, "media_key": "3_1448584884977610753", "ext_alt_text": null, "ext_media_availability": {"status": "available"}, "ext_media_color": {"palette": [{"rgb": {"red": 255, "green": 255, "blue": 255}, "percentage": 92.52}, {"rgb": {"red": 179, "green": 184, "blue": 233}, "percentage": 2.69}, {"rgb": {"red": 177, "green": 214, "blue": 178}, "percentage": 1.36}, {"rgb": {"red": 197, "green": 170, "blue": 127}, "percentage": 1.28}, {"rgb": {"red": 202, "green": 144, "blue": 144}, "percentage": 0.64}]}, "ext": {"mediaStats": {"r": "Missing", "ttl": -1}}}]}, "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user_id": 2231942203, "user_id_str": "2231942203", "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "reply_count": 0, "quote_count": 0, "conversation_id": 1448584886609195011, "conversation_id_str": "1448584886609195011", "favorited": false, "retweeted": false, "possibly_sensitive": false, "possibly_sensitive_editable": true, "lang": "en", "supplemental_language": null}}
{"object_type": "TweetRaw", "download_datetime": "2021-10-14T13:13:29.525561+02:00", "raw_value": {"created_at": "Thu Oct 14 05:07:35 +0000 2021", "id": 1448515806845829123, "id_str": "1448515806845829123", "full_text": "India recorded 18,987 fresh coronavirus cases, taking the infection tally to 3,40,20,730 on Thursday, while the national Covid recovery rate increased to 98.07 per cent. #India #COVID19 @MoHFW_INDIA \nhttps://t.co/9HXIIdxlgF", "truncated": false, "display_text_range": [0, 223], "entities": {"hashtags": [{"text": "India", "indices": [170, 176]}, {"text": "COVID19", "indices": [177, 185]}], "symbols": [], "user_mentions": [{"screen_name": "MoHFW_INDIA", "name": "Ministry of Health", "id": 2596143056, "id_str": "2596143056", "indices": [186, 198]}], "urls": [{"url": "https://t.co/9HXIIdxlgF", "expanded_url": "https://www.dailypioneer.com/2021/top-stories/india-logs-18-987-fresh-covid-cases--246-new-deaths.html", "display_url": "dailypioneer.com/2021/top-stori\u2026", "indices": [200, 223]}]}, "source": "<a href=\"https://mobile.twitter.com\" rel=\"nofollow\">Twitter Web App</a>", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user_id": 470299753, "user_id_str": "470299753", "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 8, "favorite_count": 8, "reply_count": 0, "quote_count": 0, "conversation_id": 1448515806845829123, "conversation_id_str": "1448515806845829123", "favorited": false, "retweeted": false, "possibly_sensitive": false, "possibly_sensitive_editable": true, "card": {"name": "summary", "url": "https://t.co/9HXIIdxlgF", "card_type_url": "http://card-type-url-is-deprecated.invalid", "binding_values": {"vanity_url": {"type": "STRING", "string_value": "dailypioneer.com", "scribe_key": "vanity_url"}, "domain": {"type": "STRING", "string_value": "www.dailypioneer.com"}, "site": {"type": "USER", "user_value": {"id_str": "470299753", "path": []}, "scribe_key": "publisher_id"}, "title": {"type": "STRING", "string_value": "India logs 18,987 fresh Covid cases, 246 new deaths"}, "description": {"type": "STRING", "string_value": "India recorded 18,987 fresh coronavirus cases, taking the infection tally to 3,40,20,730 on Thursday, while the national Covid recovery rate increased to 98.07 per cent, according to the Union Health..."}, "thumbnail_image_small": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448515644324937733/_dTwonUK?format=jpg&name=100x100_2", "width": 100, "height": 100, "alt": null}}, "thumbnail_image": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448515644324937733/_dTwonUK?format=jpg&name=144x144_2", "width": 144, "height": 144, "alt": null}}, "thumbnail_image_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448515644324937733/_dTwonUK?format=jpg&name=420x420_2", "width": 420, "height": 420, "alt": null}}, "thumbnail_image_x_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448515644324937733/_dTwonUK?format=png&name=2048x2048_2_exp", "width": 1000, "height": 800, "alt": null}}, "thumbnail_image_original": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448515644324937733/_dTwonUK?format=jpg&name=orig", "width": 1000, "height": 800, "alt": null}}, "card_url": {"type": "STRING", "string_value": "https://t.co/9HXIIdxlgF", "scribe_key": "card_url"}}, "users": {"470299753": {"id": 470299753, "id_str": "470299753", "name": "The Pioneer", "screen_name": "TheDailyPioneer", "location": "", "description": "Twitter account of India's leading independent right-thinking newspaper.", "url": "https://t.co/HZJocXGNYS", "entities": {"url": {"urls": [{"url": "https://t.co/HZJocXGNYS", "expanded_url": "https://www.dailypioneer.com/", "display_url": "dailypioneer.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 27319, "fast_followers_count": 0, "normal_followers_count": 27319, "friends_count": 99, "listed_count": 319, "created_at": "Sat Jan 21 16:23:26 +0000 2012", "favourites_count": 140, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": true, "statuses_count": 95047, "media_count": 16250, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "131516", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/907495854289805312/Cgzn3nmb_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/907495854289805312/Cgzn3nmb_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/470299753/1621516070", "profile_image_extensions_media_color": {"palette": [{"rgb": {"red": 254, "green": 254, "blue": 254}, "percentage": 47.55}, {"rgb": {"red": 255, "green": 202, "blue": 8}, "percentage": 37.55}, {"rgb": {"red": 18, "green": 52, "blue": 124}, "percentage": 11.68}, {"rgb": {"red": 176, "green": 162, "blue": 74}, "percentage": 0.98}, {"rgb": {"red": 221, "green": 206, "blue": 167}, "percentage": 0.42}]}, "profile_image_extensions_alt_text": null, "profile_image_extensions_media_availability": null, "profile_image_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_banner_extensions_alt_text": null, "profile_banner_extensions_media_availability": null, "profile_banner_extensions_media_color": {"palette": [{"rgb": {"red": 255, "green": 255, "blue": 255}, "percentage": 58.83}, {"rgb": {"red": 0, "green": 65, "blue": 255}, "percentage": 25.93}, {"rgb": {"red": 58, "green": 105, "blue": 247}, "percentage": 5.89}, {"rgb": {"red": 255, "green": 205, "blue": 0}, "percentage": 4.36}, {"rgb": {"red": 121, "green": 151, "blue": 244}, "percentage": 2.4}]}, "profile_banner_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_link_color": "009999", "profile_sidebar_border_color": "EEEEEE", "profile_sidebar_fill_color": "EFEFEF", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "pinned_tweet_ids": [], "pinned_tweet_ids_str": [], "has_custom_timelines": true, "can_dm": null, "following": null, "follow_request_sent": null, "notifications": null, "muting": null, "blocking": null, "blocked_by": null, "want_retweets": null, "advertiser_account_type": "promotable_user", "advertiser_account_service_levels": [], "profile_interstitial_type": "", "business_profile_state": "none", "translator_type": "none", "withheld_in_countries": [], "followed_by": null, "ext": {"highlightedLabel": {"r": {"ok": {}}, "ttl": -1}}, "require_some_consent": false}}, "card_platform": {"platform": {"device": {"name": "Swift", "version": "12"}, "audience": {"name": "production", "bucket": null}}}}, "lang": "en", "supplemental_language": null}}
{"object_type": "TweetRaw", "download_datetime": "2021-10-14T13:13:29.525666+02:00", "raw_value": {"created_at": "Thu Oct 14 10:50:20 +0000 2021", "id": 1448602064892809218, "id_str": "1448602064892809218", "full_text": "@HNEHealth I need to know these stats. Thank you for posting them. I hope you keep posting this break up. We need to know if #covid19 is getting through the vaccination 2 jabs/dose barrier. \nI would like to further know which vaccine is failing. Pfizer or Astrazeneca.", "truncated": false, "display_text_range": [11, 268], "entities": {"hashtags": [{"text": "covid19", "indices": [125, 133]}], "symbols": [], "user_mentions": [{"screen_name": "HNEHealth", "name": "HNE Health", "id": 171489989, "id_str": "171489989", "indices": [0, 10]}], "urls": []}, "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "in_reply_to_status_id": 1448454134445662210, "in_reply_to_status_id_str": "1448454134445662210", "in_reply_to_user_id": 171489989, "in_reply_to_user_id_str": "171489989", "in_reply_to_screen_name": "HNEHealth", "user_id": 1436200289044873219, "user_id_str": "1436200289044873219", "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 1, "favorite_count": 1, "reply_count": 0, "quote_count": 0, "conversation_id": 1448454134445662210, "conversation_id_str": "1448454134445662210", "favorited": false, "retweeted": false, "lang": "en", "supplemental_language": null}}
{"object_type": "TweetRaw", "download_datetime": "2021-10-14T13:13:29.525760+02:00", "raw_value": {"created_at": "Thu Oct 14 09:46:14 +0000 2021", "id": 1448585933859835907, "id_str": "1448585933859835907", "full_text": "NHS privatisation EDM (Early Day Motion) 17: tabled on 11 May 2021 under #COVID19 #NoShame", "truncated": false, "display_text_range": [0, 90], "entities": {"hashtags": [{"text": "COVID19", "indices": [73, 81]}, {"text": "NoShame", "indices": [82, 90]}], "symbols": [], "user_mentions": [], "urls": []}, "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user_id": 1444520291414196226, "user_id_str": "1444520291414196226", "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "reply_count": 0, "quote_count": 0, "conversation_id": 1448585933859835907, "conversation_id_str": "1448585933859835907", "favorited": false, "retweeted": false, "lang": "en", "supplemental_language": null}}
{"object_type": "TweetRaw", "download_datetime": "2021-10-14T13:13:29.525860+02:00", "raw_value": {"created_at": "Thu Oct 14 09:06:03 +0000 2021", "id": 1448575819807445000, "id_str": "1448575819807445000", "full_text": "When @GovRonDeSantis and @GregAbbott_TX block masks/vaccines, what they\u2019re really doing is indicating that any public health measures are a violation of rights.  So, they\u2019ve declared food health codes, water safety, building codes, &amp; drug laws invalid in their states. #COVID19", "truncated": false, "display_text_range": [0, 281], "entities": {"hashtags": [{"text": "COVID19", "indices": [273, 281]}], "symbols": [], "user_mentions": [{"screen_name": "GovRonDeSantis", "name": "Ron DeSantis", "id": 1058807868, "id_str": "1058807868", "indices": [5, 20]}, {"screen_name": "GregAbbott_TX", "name": "Greg Abbott", "id": 90651198, "id_str": "90651198", "indices": [25, 39]}], "urls": []}, "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user_id": 1211487099414704128, "user_id_str": "1211487099414704128", "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "reply_count": 0, "quote_count": 0, "conversation_id": 1448575819807445000, "conversation_id_str": "1448575819807445000", "favorited": false, "retweeted": false, "lang": "en", "supplemental_language": null}}
{"object_type": "TweetRaw", "download_datetime": "2021-10-14T13:13:29.526195+02:00", "raw_value": {"created_at": "Thu Oct 14 11:07:27 +0000 2021", "id": 1448606373248446467, "id_str": "1448606373248446467", "full_text": "Really! after all this time they still haven't learned that #COVID19  is a virus, a pandemic, and therefore unpredictable.  Business owners call for certainty on restrictions - https://t.co/ByGyeTgQWU https://t.co/JZuJwAaltf", "truncated": false, "display_text_range": [0, 224], "entities": {"hashtags": [{"text": "COVID19", "indices": [60, 68]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/ByGyeTgQWU", "expanded_url": "http://RTE.ie", "display_url": "RTE.ie", "indices": [177, 200]}, {"url": "https://t.co/JZuJwAaltf", "expanded_url": "https://www.rte.ie/news/coronavirus/2021/1014/1253647-entertainment/", "display_url": "rte.ie/news/coronavir\u2026", "indices": [201, 224]}]}, "source": "<a href=\"https://mobile.twitter.com\" rel=\"nofollow\">Twitter Web App</a>", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user_id": 843923118213206017, "user_id_str": "843923118213206017", "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "reply_count": 0, "quote_count": 0, "conversation_id": 1448606373248446467, "conversation_id_str": "1448606373248446467", "favorited": false, "retweeted": false, "possibly_sensitive": false, "possibly_sensitive_editable": true, "card": {"name": "summary_large_image", "url": "https://t.co/JZuJwAaltf", "card_type_url": "http://card-type-url-is-deprecated.invalid", "binding_values": {"vanity_url": {"type": "STRING", "string_value": "rte.ie", "scribe_key": "vanity_url"}, "amp": {"type": "BOOLEAN", "boolean_value": true}, "domain": {"type": "STRING", "string_value": "www.rte.ie"}, "creator": {"type": "USER", "user_value": {"id_str": "8973062", "path": []}}, "site": {"type": "USER", "user_value": {"id_str": "1245699895", "path": []}, "scribe_key": "publisher_id"}, "title": {"type": "STRING", "string_value": "Business owners call for certainty on restrictions"}, "description": {"type": "STRING", "string_value": "A nightclub operator in Dublin has said he is devastated at the lack of certainty that has arisen again about re-opening plans for the industry next week due to rising Covid-19 rates."}, "thumbnail_image_small": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448564325740777473/8icctakw?format=jpg&name=144x144", "width": 144, "height": 81, "alt": null}}, "thumbnail_image": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448564325740777473/8icctakw?format=jpg&name=280x150", "width": 267, "height": 150, "alt": null}}, "thumbnail_image_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448564325740777473/8icctakw?format=jpg&name=800x320_1", "width": 569, "height": 320, "alt": null}}, "thumbnail_image_x_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448564325740777473/8icctakw?format=png&name=2048x2048_2_exp", "width": 1600, "height": 900, "alt": null}}, "thumbnail_image_original": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448564325740777473/8icctakw?format=jpg&name=orig", "width": 1600, "height": 900, "alt": null}}, "summary_photo_image_small": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448564325740777473/8icctakw?format=jpg&name=386x202", "width": 386, "height": 202, "alt": null}}, "summary_photo_image": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448564325740777473/8icctakw?format=jpg&name=600x314", "width": 600, "height": 314, "alt": null}}, "summary_photo_image_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448564325740777473/8icctakw?format=jpg&name=800x419", "width": 800, "height": 419, "alt": null}}, "summary_photo_image_x_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448564325740777473/8icctakw?format=png&name=2048x2048_2_exp", "width": 1600, "height": 900, "alt": null}}, "summary_photo_image_original": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448564325740777473/8icctakw?format=jpg&name=orig", "width": 1600, "height": 900, "alt": null}}, "photo_image_full_size_small": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448564325740777473/8icctakw?format=jpg&name=386x202", "width": 386, "height": 202, "alt": null}}, "photo_image_full_size": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448564325740777473/8icctakw?format=jpg&name=600x314", "width": 600, "height": 314, "alt": null}}, "photo_image_full_size_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448564325740777473/8icctakw?format=jpg&name=800x419", "width": 800, "height": 419, "alt": null}}, "photo_image_full_size_x_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448564325740777473/8icctakw?format=png&name=2048x2048_2_exp", "width": 1600, "height": 900, "alt": null}}, "photo_image_full_size_original": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448564325740777473/8icctakw?format=jpg&name=orig", "width": 1600, "height": 900, "alt": null}}, "card_url": {"type": "STRING", "string_value": "https://t.co/JZuJwAaltf", "scribe_key": "card_url"}}, "users": {"8973062": {"id": 8973062, "id_str": "8973062", "name": "RT\u00c9 News", "screen_name": "rtenews", "location": "Ireland", "description": "RT\u00c9 News and Current Affairs - Irish and International News", "url": "http://t.co/NopTRTpZP2", "entities": {"url": {"urls": [{"url": "http://t.co/NopTRTpZP2", "expanded_url": "http://rte.ie/news", "display_url": "rte.ie/news", "indices": [0, 22]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 969067, "fast_followers_count": 0, "normal_followers_count": 969067, "friends_count": 319, "listed_count": 3908, "created_at": "Wed Sep 19 12:52:21 +0000 2007", "favourites_count": 28, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": true, "statuses_count": 194362, "media_count": 39954, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1387297103328710657/ccoZk-II_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1387297103328710657/ccoZk-II_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/8973062/1588330137", "profile_image_extensions_media_color": {"palette": [{"rgb": {"red": 0, "green": 137, "blue": 207}, "percentage": 91.93}, {"rgb": {"red": 243, "green": 249, "blue": 247}, "percentage": 6.71}, {"rgb": {"red": 130, "green": 196, "blue": 225}, "percentage": 1.29}, {"rgb": {"red": 5, "green": 134, "blue": 215}, "percentage": 0.22}]}, "profile_image_extensions_alt_text": null, "profile_image_extensions_media_availability": null, "profile_image_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_banner_extensions_alt_text": null, "profile_banner_extensions_media_availability": null, "profile_banner_extensions_media_color": {"palette": [{"rgb": {"red": 30, "green": 105, "blue": 173}, "percentage": 100.0}]}, "profile_banner_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_link_color": "0084B4", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": false, "default_profile_image": false, "pinned_tweet_ids": [], "pinned_tweet_ids_str": [], "has_custom_timelines": false, "can_dm": null, "following": null, "follow_request_sent": null, "notifications": null, "muting": null, "blocking": null, "blocked_by": null, "want_retweets": null, "advertiser_account_type": "promotable_user", "advertiser_account_service_levels": ["media_studio"], "profile_interstitial_type": "", "business_profile_state": "none", "translator_type": "none", "withheld_in_countries": [], "followed_by": null, "ext": {"highlightedLabel": {"r": {"ok": {}}, "ttl": -1}}, "require_some_consent": false}, "1245699895": {"id": 1245699895, "id_str": "1245699895", "name": "RT\u00c9", "screen_name": "rte", "location": "Dublin-Cork-Regional & Global", "description": "Raidi\u00f3 Teilif\u00eds \u00c9ireann, Ireland's National Public Service Multi-Media Organisation | Click for other RT\u00c9 Twitter accounts | Explore https://t.co/Pv9IbykDWb", "url": "https://t.co/BgorelgQuI", "entities": {"url": {"urls": [{"url": "https://t.co/BgorelgQuI", "expanded_url": "http://www.rte.ie/about/en/information-and-feedback/2013/0312/376270-twitter", "display_url": "rte.ie/about/en/infor\u2026", "indices": [0, 23]}]}, "description": {"urls": [{"url": "https://t.co/Pv9IbykDWb", "expanded_url": "http://www.rte.ie/explore", "display_url": "rte.ie/explore", "indices": [133, 156]}]}}, "protected": false, "followers_count": 638486, "fast_followers_count": 0, "normal_followers_count": 638486, "friends_count": 23841, "listed_count": 1112, "created_at": "Wed Mar 06 09:33:16 +0000 2013", "favourites_count": 11110, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": true, "statuses_count": 89809, "media_count": 53801, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "C6E2EE", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme2/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme2/bg.gif", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1412812344586129409/j8gM3rqL_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1412812344586129409/j8gM3rqL_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1245699895/1626169534", "profile_image_extensions_alt_text": null, "profile_image_extensions_media_availability": null, "profile_image_extensions_media_color": {"palette": [{"rgb": {"red": 0, "green": 166, "blue": 178}, "percentage": 93.19}, {"rgb": {"red": 250, "green": 253, "blue": 251}, "percentage": 6.81}]}, "profile_image_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_banner_extensions_media_color": {"palette": [{"rgb": {"red": 45, "green": 99, "blue": 160}, "percentage": 18.62}, {"rgb": {"red": 2, "green": 2, "blue": 2}, "percentage": 17.91}, {"rgb": {"red": 67, "green": 144, "blue": 89}, "percentage": 11.76}, {"rgb": {"red": 96, "green": 141, "blue": 45}, "percentage": 7.1}, {"rgb": {"red": 177, "green": 26, "blue": 29}, "percentage": 5.74}]}, "profile_banner_extensions_alt_text": null, "profile_banner_extensions_media_availability": null, "profile_banner_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_link_color": "1F98C7", "profile_sidebar_border_color": "FFFFFF", "profile_sidebar_fill_color": "DAECF4", "profile_text_color": "663B12", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": false, "default_profile_image": false, "pinned_tweet_ids": [1447946912796184583], "pinned_tweet_ids_str": ["1447946912796184583"], "has_custom_timelines": true, "can_dm": null, "following": null, "follow_request_sent": null, "notifications": null, "muting": null, "blocking": null, "blocked_by": null, "want_retweets": null, "advertiser_account_type": "promotable_user", "advertiser_account_service_levels": ["mms"], "profile_interstitial_type": "", "business_profile_state": "none", "translator_type": "none", "withheld_in_countries": [], "followed_by": null, "ext": {"highlightedLabel": {"r": {"ok": {}}, "ttl": -1}}, "require_some_consent": false}}, "card_platform": {"platform": {"device": {"name": "Swift", "version": "12"}, "audience": {"name": "production", "bucket": null}}}}, "lang": "en", "supplemental_language": null}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:29.527775+02:00", "raw_value": {"id": 470299753, "id_str": "470299753", "name": "The Pioneer", "screen_name": "TheDailyPioneer", "location": "", "description": "Twitter account of India's leading independent right-thinking newspaper.", "url": "https://t.co/HZJocXGNYS", "entities": {"url": {"urls": [{"url": "https://t.co/HZJocXGNYS", "expanded_url": "https://www.dailypioneer.com/", "display_url": "dailypioneer.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 27319, "fast_followers_count": 0, "normal_followers_count": 27319, "friends_count": 99, "listed_count": 319, "created_at": "Sat Jan 21 16:23:26 +0000 2012", "favourites_count": 140, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": true, "statuses_count": 95047, "media_count": 16250, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "131516", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/907495854289805312/Cgzn3nmb_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/907495854289805312/Cgzn3nmb_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/470299753/1621516070", "profile_image_extensions_media_color": {"palette": [{"rgb": {"red": 254, "green": 254, "blue": 254}, "percentage": 47.55}, {"rgb": {"red": 255, "green": 202, "blue": 8}, "percentage": 37.55}, {"rgb": {"red": 18, "green": 52, "blue": 124}, "percentage": 11.68}, {"rgb": {"red": 176, "green": 162, "blue": 74}, "percentage": 0.98}, {"rgb": {"red": 221, "green": 206, "blue": 167}, "percentage": 0.42}]}, "profile_image_extensions_alt_text": null, "profile_image_extensions_media_availability": null, "profile_image_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_banner_extensions_alt_text": null, "profile_banner_extensions_media_availability": null, "profile_banner_extensions_media_color": {"palette": [{"rgb": {"red": 255, "green": 255, "blue": 255}, "percentage": 58.83}, {"rgb": {"red": 0, "green": 65, "blue": 255}, "percentage": 25.93}, {"rgb": {"red": 58, "green": 105, "blue": 247}, "percentage": 5.89}, {"rgb": {"red": 255, "green": 205, "blue": 0}, "percentage": 4.36}, {"rgb": {"red": 121, "green": 151, "blue": 244}, "percentage": 2.4}]}, "profile_banner_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_link_color": "009999", "profile_sidebar_border_color": "EEEEEE", "profile_sidebar_fill_color": "EFEFEF", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "pinned_tweet_ids": [], "pinned_tweet_ids_str": [], "has_custom_timelines": true, "can_dm": null, "following": null, "follow_request_sent": null, "notifications": null, "muting": null, "blocking": null, "blocked_by": null, "want_retweets": null, "advertiser_account_type": "promotable_user", "advertiser_account_service_levels": [], "profile_interstitial_type": "", "business_profile_state": "none", "translator_type": "none", "withheld_in_countries": [], "followed_by": null, "ext": {"highlightedLabel": {"r": {"ok": {}}, "ttl": -1}}, "require_some_consent": false}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:29.527936+02:00", "raw_value": {"id": 1436200289044873219, "id_str": "1436200289044873219", "name": "Gypsy Free", "screen_name": "GypsyFree333", "location": "Freedonia ", "description": "My words , my thoughts , free speech , sorry not sorry", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 1, "fast_followers_count": 0, "normal_followers_count": 1, "friends_count": 13, "listed_count": 0, "created_at": "Fri Sep 10 05:30:18 +0000 2021", "favourites_count": 137, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 140, "media_count": 3, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "F5F8FA", "profile_background_image_url": null, "profile_background_image_url_https": null, "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1436203249397223424/Km9UH936_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1436203249397223424/Km9UH936_normal.jpg", "profile_image_extensions_media_color": {"palette": [{"rgb": {"red": 0, "green": 0, "blue": 0}, "percentage": 77.48}, {"rgb": {"red": 218, "green": 152, "blue": 98}, "percentage": 9.76}, {"rgb": {"red": 75, "green": 20, "blue": 20}, "percentage": 5.52}, {"rgb": {"red": 196, "green": 154, "blue": 126}, "percentage": 2.21}, {"rgb": {"red": 194, "green": 95, "blue": 45}, "percentage": 1.79}]}, "profile_image_extensions_alt_text": null, "profile_image_extensions_media_availability": null, "profile_image_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": true, "default_profile_image": false, "pinned_tweet_ids": [], "pinned_tweet_ids_str": [], "has_custom_timelines": false, "can_dm": null, "following": null, "follow_request_sent": null, "notifications": null, "muting": null, "blocking": null, "blocked_by": null, "want_retweets": null, "advertiser_account_type": "none", "advertiser_account_service_levels": [], "profile_interstitial_type": "", "business_profile_state": "none", "translator_type": "none", "withheld_in_countries": [], "followed_by": null, "ext": {"highlightedLabel": {"r": {"ok": {}}, "ttl": -1}}, "require_some_consent": false}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:29.528101+02:00", "raw_value": {"id": 748744688, "id_str": "748744688", "name": "MuserMom\ud83e\udde2\ud83d\ude37\u2744\ufe0f", "screen_name": "sophierich47", "location": "San Francisco, CA", "description": "Just a mom who loves @muse \ud83c\udfb8\ud83e\udd41 \ud83c\udfb9Our freedom\u2019s consuming itself\ud83d\udd25\ud83c\udf0e", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 275, "fast_followers_count": 0, "normal_followers_count": 275, "friends_count": 1460, "listed_count": 0, "created_at": "Fri Aug 10 06:11:21 +0000 2012", "favourites_count": 54244, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 8410, "media_count": 43, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1275724499070181378/ZJ42LdO4_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1275724499070181378/ZJ42LdO4_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/748744688/1570467572", "profile_image_extensions_alt_text": null, "profile_image_extensions_media_availability": null, "profile_image_extensions_media_color": {"palette": [{"rgb": {"red": 186, "green": 158, "blue": 152}, "percentage": 31.3}, {"rgb": {"red": 57, "green": 51, "blue": 59}, "percentage": 23.71}, {"rgb": {"red": 142, "green": 192, "blue": 251}, "percentage": 19.77}, {"rgb": {"red": 117, "green": 167, "blue": 241}, "percentage": 5.29}, {"rgb": {"red": 203, "green": 233, "blue": 250}, "percentage": 4.8}]}, "profile_image_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_banner_extensions_media_color": {"palette": [{"rgb": {"red": 36, "green": 5, "blue": 132}, "percentage": 39.75}, {"rgb": {"red": 77, "green": 49, "blue": 219}, "percentage": 21.98}, {"rgb": {"red": 6, "green": 3, "blue": 84}, "percentage": 11.1}, {"rgb": {"red": 77, "green": 9, "blue": 105}, "percentage": 4.58}, {"rgb": {"red": 177, "green": 80, "blue": 250}, "percentage": 4.32}]}, "profile_banner_extensions_alt_text": null, "profile_banner_extensions_media_availability": null, "profile_banner_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": true, "default_profile_image": false, "pinned_tweet_ids": [1363708467630940162], "pinned_tweet_ids_str": ["1363708467630940162"], "has_custom_timelines": true, "can_dm": null, "following": null, "follow_request_sent": null, "notifications": null, "muting": null, "blocking": null, "blocked_by": null, "want_retweets": null, "advertiser_account_type": "none", "advertiser_account_service_levels": [], "profile_interstitial_type": "", "business_profile_state": "none", "translator_type": "none", "withheld_in_countries": [], "followed_by": null, "ext": {"highlightedLabel": {"r": {"ok": {}}, "ttl": -1}}, "require_some_consent": false}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:29.528260+02:00", "raw_value": {"id": 2231942203, "id_str": "2231942203", "name": "mradam", "screen_name": "allgrimlock", "location": "", "description": "", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 46, "fast_followers_count": 0, "normal_followers_count": 46, "friends_count": 32, "listed_count": 2, "created_at": "Thu Dec 05 19:39:58 +0000 2013", "favourites_count": 3544, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 2570, "media_count": 364, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/378800000833638571/1acdcbc1d84c01fcb7db3385bdd3a126_normal.jpeg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/378800000833638571/1acdcbc1d84c01fcb7db3385bdd3a126_normal.jpeg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/2231942203/1386272609", "profile_image_extensions_alt_text": null, "profile_image_extensions_media_availability": null, "profile_image_extensions_media_color": {"palette": [{"rgb": {"red": 221, "green": 111, "blue": 21}, "percentage": 50.66}, {"rgb": {"red": 211, "green": 171, "blue": 134}, "percentage": 11.91}, {"rgb": {"red": 113, "green": 53, "blue": 24}, "percentage": 11.74}, {"rgb": {"red": 241, "green": 150, "blue": 57}, "percentage": 9.13}, {"rgb": {"red": 134, "green": 18, "blue": 5}, "percentage": 4.4}]}, "profile_image_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_banner_extensions_alt_text": null, "profile_banner_extensions_media_availability": null, "profile_banner_extensions_media_color": {"palette": [{"rgb": {"red": 161, "green": 152, "blue": 140}, "percentage": 40.52}, {"rgb": {"red": 55, "green": 38, "blue": 26}, "percentage": 34.25}, {"rgb": {"red": 101, "green": 75, "blue": 50}, "percentage": 14.14}, {"rgb": {"red": 66, "green": 46, "blue": 69}, "percentage": 3.27}, {"rgb": {"red": 156, "green": 135, "blue": 102}, "percentage": 1.39}]}, "profile_banner_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": true, "default_profile_image": false, "pinned_tweet_ids": [], "pinned_tweet_ids_str": [], "has_custom_timelines": true, "can_dm": null, "following": null, "follow_request_sent": null, "notifications": null, "muting": null, "blocking": null, "blocked_by": null, "want_retweets": null, "advertiser_account_type": "none", "advertiser_account_service_levels": [], "profile_interstitial_type": "", "business_profile_state": "none", "translator_type": "none", "withheld_in_countries": [], "followed_by": null, "ext": {"highlightedLabel": {"r": {"ok": {}}, "ttl": -1}}, "require_some_consent": false}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:29.528427+02:00", "raw_value": {"id": 1095815704195010560, "id_str": "1095815704195010560", "name": "Blac Goss", "screen_name": "Blacgoss", "location": "", "description": "Follow Blac Goss for the latest Celebrity news and more from around the World. Visit the website \u2b07\ufe0f IG: https://t.co/mOANBiA3PQ", "url": "https://t.co/mvr3m5k8R8", "entities": {"url": {"urls": [{"url": "https://t.co/mvr3m5k8R8", "expanded_url": "https://blacgoss.com", "display_url": "blacgoss.com", "indices": [0, 23]}]}, "description": {"urls": [{"url": "https://t.co/mOANBiA3PQ", "expanded_url": "http://instagram.com/blacgoss_/", "display_url": "instagram.com/blacgoss_/", "indices": [104, 127]}]}}, "protected": false, "followers_count": 159, "fast_followers_count": 0, "normal_followers_count": 159, "friends_count": 297, "listed_count": 2, "created_at": "Wed Feb 13 22:43:17 +0000 2019", "favourites_count": 1014, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 6915, "media_count": 1094, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1102208364661092358/0BRwCT7J_normal.png", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1102208364661092358/0BRwCT7J_normal.png", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1095815704195010560/1610129014", "profile_image_extensions_alt_text": null, "profile_image_extensions_media_availability": null, "profile_image_extensions_media_color": {"palette": [{"rgb": {"red": 255, "green": 255, "blue": 255}, "percentage": 91.88}, {"rgb": {"red": 2, "green": 2, "blue": 2}, "percentage": 3.39}, {"rgb": {"red": 246, "green": 36, "blue": 34}, "percentage": 2.86}, {"rgb": {"red": 241, "green": 112, "blue": 111}, "percentage": 0.79}, {"rgb": {"red": 243, "green": 168, "blue": 168}, "percentage": 0.48}]}, "profile_image_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_banner_extensions_alt_text": null, "profile_banner_extensions_media_availability": null, "profile_banner_extensions_media_color": {"palette": [{"rgb": {"red": 40, "green": 27, "blue": 26}, "percentage": 38.68}, {"rgb": {"red": 166, "green": 116, "blue": 94}, "percentage": 21.06}, {"rgb": {"red": 222, "green": 221, "blue": 236}, "percentage": 11.25}, {"rgb": {"red": 127, "green": 20, "blue": 22}, "percentage": 6.98}, {"rgb": {"red": 104, "green": 54, "blue": 37}, "percentage": 4.61}]}, "profile_banner_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_link_color": "E81C4F", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "has_extended_profile": false, "default_profile": false, "default_profile_image": false, "pinned_tweet_ids": [1211703345439813632], "pinned_tweet_ids_str": ["1211703345439813632"], "has_custom_timelines": false, "can_dm": null, "following": null, "follow_request_sent": null, "notifications": null, "muting": null, "blocking": null, "blocked_by": null, "want_retweets": null, "advertiser_account_type": "promotable_user", "advertiser_account_service_levels": ["smb"], "profile_interstitial_type": "", "business_profile_state": "none", "translator_type": "none", "withheld_in_countries": [], "followed_by": null, "ext": {"highlightedLabel": {"r": {"ok": {}}, "ttl": -1}}, "require_some_consent": false}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:29.528558+02:00", "raw_value": {"id": 1211487099414704128, "id_str": "1211487099414704128", "name": "Apple\u2019s Hardcore Yo", "screen_name": "Appleshardcore", "location": "Cleveland, OH", "description": "", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 9, "fast_followers_count": 0, "normal_followers_count": 9, "friends_count": 29, "listed_count": 0, "created_at": "Mon Dec 30 03:20:37 +0000 2019", "favourites_count": 510, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 707, "media_count": 69, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "F5F8FA", "profile_background_image_url": null, "profile_background_image_url_https": null, "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1381559575820824576/eNhg0ZLz_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1381559575820824576/eNhg0ZLz_normal.jpg", "profile_image_extensions_alt_text": null, "profile_image_extensions_media_availability": null, "profile_image_extensions_media_color": {"palette": [{"rgb": {"red": 224, "green": 183, "blue": 102}, "percentage": 42.08}, {"rgb": {"red": 235, "green": 230, "blue": 216}, "percentage": 17.18}, {"rgb": {"red": 149, "green": 85, "blue": 35}, "percentage": 6.74}, {"rgb": {"red": 222, "green": 203, "blue": 125}, "percentage": 5.35}, {"rgb": {"red": 197, "green": 42, "blue": 27}, "percentage": 4.81}]}, "profile_image_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": true, "default_profile_image": false, "pinned_tweet_ids": [], "pinned_tweet_ids_str": [], "has_custom_timelines": false, "can_dm": null, "following": null, "follow_request_sent": null, "notifications": null, "muting": null, "blocking": null, "blocked_by": null, "want_retweets": null, "advertiser_account_type": "none", "advertiser_account_service_levels": [], "profile_interstitial_type": "", "business_profile_state": "none", "translator_type": "none", "withheld_in_countries": [], "followed_by": null, "ext": {"highlightedLabel": {"r": {"ok": {}}, "ttl": -1}}, "require_some_consent": false}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:29.528709+02:00", "raw_value": {"id": 1444520291414196226, "id_str": "1444520291414196226", "name": "Nicholas", "screen_name": "TheAlpinistMan", "location": "Edinburgh, Scotland", "description": "100% Self Made / Funded Thrill-seeker Aspiring To Become A Filmmaker & International Mountain Leader. #NoShortCuts #RememberThat", "url": "https://t.co/5fFn2uShqd", "entities": {"url": {"urls": [{"url": "https://t.co/5fFn2uShqd", "expanded_url": "http://TheAlpinistMan.com", "display_url": "TheAlpinistMan.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 1, "fast_followers_count": 0, "normal_followers_count": 1, "friends_count": 32, "listed_count": 0, "created_at": "Sun Oct 03 04:31:01 +0000 2021", "favourites_count": 23, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 137, "media_count": 79, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "F5F8FA", "profile_background_image_url": null, "profile_background_image_url_https": null, "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1448114478961283076/fnVU_T4H_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1448114478961283076/fnVU_T4H_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1444520291414196226/1633845984", "profile_image_extensions_media_color": {"palette": [{"rgb": {"red": 249, "green": 249, "blue": 249}, "percentage": 92.38}, {"rgb": {"red": 19, "green": 19, "blue": 19}, "percentage": 6.15}, {"rgb": {"red": 133, "green": 133, "blue": 133}, "percentage": 2.04}]}, "profile_image_extensions_alt_text": null, "profile_image_extensions_media_availability": null, "profile_image_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_banner_extensions_media_color": {"palette": [{"rgb": {"red": 56, "green": 85, "blue": 161}, "percentage": 76.74}, {"rgb": {"red": 31, "green": 44, "blue": 72}, "percentage": 8.39}, {"rgb": {"red": 193, "green": 197, "blue": 210}, "percentage": 6.09}, {"rgb": {"red": 96, "green": 123, "blue": 188}, "percentage": 3.65}, {"rgb": {"red": 119, "green": 126, "blue": 145}, "percentage": 1.31}]}, "profile_banner_extensions_alt_text": null, "profile_banner_extensions_media_availability": null, "profile_banner_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": true, "default_profile_image": false, "pinned_tweet_ids": [1447459978516762629], "pinned_tweet_ids_str": ["1447459978516762629"], "has_custom_timelines": false, "can_dm": null, "following": null, "follow_request_sent": null, "notifications": null, "muting": null, "blocking": null, "blocked_by": null, "want_retweets": null, "advertiser_account_type": "none", "advertiser_account_service_levels": [], "profile_interstitial_type": "", "business_profile_state": "none", "translator_type": "none", "withheld_in_countries": [], "followed_by": null, "ext": {"highlightedLabel": {"r": {"ok": {}}, "ttl": -1}}, "require_some_consent": false}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:29.528870+02:00", "raw_value": {"id": 843923118213206017, "id_str": "843923118213206017", "name": "Sue \u24cb Lilesosanna Flower", "screen_name": "Lile_sosanna", "location": "Ireland", "description": "Vegan food, gardening, beekeeping, my animals, wildlife, batik, hedgerow wine, current affairs, art, history, books and conservation. Neurodiverse.", "url": "https://t.co/hj54hIEYhp", "entities": {"url": {"urls": [{"url": "https://t.co/hj54hIEYhp", "expanded_url": "https://jobpathmyexperienceoftheemploymentandskillsprogram.wordpress.com/", "display_url": "\u2026loymentandskillsprogram.wordpress.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 687, "fast_followers_count": 0, "normal_followers_count": 687, "friends_count": 171, "listed_count": 7, "created_at": "Mon Mar 20 20:32:05 +0000 2017", "favourites_count": 103068, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 44209, "media_count": 2353, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1417755948932861953/XoY7DBZN_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1417755948932861953/XoY7DBZN_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/843923118213206017/1584990606", "profile_image_extensions_media_color": {"palette": [{"rgb": {"red": 255, "green": 255, "blue": 254}, "percentage": 47.69}, {"rgb": {"red": 79, "green": 153, "blue": 17}, "percentage": 31.71}, {"rgb": {"red": 183, "green": 215, "blue": 145}, "percentage": 14.43}, {"rgb": {"red": 104, "green": 165, "blue": 75}, "percentage": 2.05}, {"rgb": {"red": 138, "green": 203, "blue": 27}, "percentage": 0.97}]}, "profile_image_extensions_alt_text": null, "profile_image_extensions_media_availability": null, "profile_image_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_banner_extensions_alt_text": null, "profile_banner_extensions_media_availability": null, "profile_banner_extensions_media_color": {"palette": [{"rgb": {"red": 71, "green": 73, "blue": 46}, "percentage": 60.96}, {"rgb": {"red": 76, "green": 88, "blue": 35}, "percentage": 13.43}, {"rgb": {"red": 113, "green": 82, "blue": 56}, "percentage": 6.34}, {"rgb": {"red": 46, "green": 76, "blue": 33}, "percentage": 3.85}, {"rgb": {"red": 30, "green": 33, "blue": 34}, "percentage": 3.12}]}, "profile_banner_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_link_color": "FF691F", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "has_extended_profile": false, "default_profile": false, "default_profile_image": false, "pinned_tweet_ids": [1385697457732980742], "pinned_tweet_ids_str": ["1385697457732980742"], "has_custom_timelines": false, "can_dm": null, "following": null, "follow_request_sent": null, "notifications": null, "muting": null, "blocking": null, "blocked_by": null, "want_retweets": null, "advertiser_account_type": "promotable_user", "advertiser_account_service_levels": ["analytics"], "profile_interstitial_type": "", "business_profile_state": "none", "translator_type": "none", "withheld_in_countries": [], "followed_by": null, "ext": {"highlightedLabel": {"r": {"ok": {}}, "ttl": -1}}, "require_some_consent": false}}
last_scrap_zero False is_cursor True
need_guest_token True
run request RequestDetails(http_method=<HttpMethod.GET: 1>, url='https://twitter.com/i/api/2/search/adaptive.json', headers={'Authorization': 'Bearer AAAAAAAAAAAAAAAAAAAAANRILgAAAAAAnNwIzUejRCOuH5E6I8xnZz4puTs%3D1Zv7ttfk8LF81IUq16cHjhLTvJu4FA33AGWWjCpTnA', 'x-guest-token': '1448607857604272138'}, params={'include_profile_interstitial_type': '1', 'include_blocking': '1', 'include_blocked_by': '1', 'include_followed_by': '1', 'include_want_retweets': '1', 'include_mute_edge': '1', 'include_can_dm': '1', 'include_can_media_tag': '1', 'skip_status': '1', 'cards_platform': 'Web-12', 'include_cards': '1', 'include_ext_alt_text': 'true', 'include_quote_count': 'true', 'include_reply_count': '1', 'tweet_mode': 'extended', 'include_entities': 'true', 'include_user_entities': 'true', 'include_ext_media_color': 'true', 'include_ext_media_availability': 'true', 'send_error_codes': 'true', 'simple_quoted_tweet': 'true', 'q': '#covid19', 'count': 20, 'query_source': 'typed_query', 'pc': '1', 'spelling_corrections': '1', 'ext': 'mediaStats,highlightedLabel,voiceInfo', 'cursor': 'scroll:thGAVUV0VFVBYBFoDU6LWJx7GaKBIYzAUAAAAALo2zCAAAAH4AAAAAAAAVfAAAAAcAAABWIEQIAAAiAQMIQEYELkQQAHCAAEEACAAAAAEBgAiAoYCJwIgQAIRJgTEQlAAACAADCgAMEAAAIQAAAgggwWRCCIWQEgmlBAAACCApaAEAAAEBAAODGEkAAACAAAAtARCCBFAYAgABAIAgEQADVEAYKAAAAATQBAEBAB6JDAUEAAEAAFAMIgCFJQKCCBEFAADGEARAJCAQgBCECCipgAAAIRAABEIAAEESACAAAAQARAQgABAAoQIgQACBBgA1ADCAAAIIAAEAAACAAAAgQCGARAECAAIgBAAAAyBABYAAIAAIBaAIsAMEAIQUAAQABCQBACQGkmAhAACxGANIQSAEAgQEAwCIgDAAgAAAAAAIQIABBAwAEAACCKAAOAQSGAAJHkTBCAkAIgDBhFQAAgAaQBUCAoCABUAABAGQpABAIACIREQIMBRMAAgwAAAQEAACAAICAoAAAmACFJAAIIAEwwMiBAAAAAAgwAICBACINGQgQAGBCCBIAIIQAEAkCgAAmBAAEgAEIQBRAIOEECECQCAALhCAAAIAIAAAABAAGQRAoDSAURKAmAEgAIIAAEAGMSgAAECA7EAAGAASAQhAOAAAQAEESIgAEAAAAADkkQMIgCApQUAACADCAKAASAOAEBAAgAAgAAIQUIAAkGADDAECAAQCACAsgGoC8AYQAACAiCSQYQABQ0AAQAMFABkSAAgDAAAAAGAIACQQEIAwgwCAEkAAABAIAFQgIBRAUFQ0EAQAAEEAABQAEgBCRAwAhAAAAgAAQgAjA0aAAgOkQAiEAAAAAoBIIAACQCCqUAFgAKIQFgQAzQACgBBAAoBgIRACAAAAABBAAAAAAEAAMIAAAEQAhEQAQBAAaIAAIADAIATEAigAEAAAAAggpACAQKACCSAJKEIAIACg8AABCGEVgPV5FYCJehgGVE9QSUNTNfwBFQwVAAA='}, timeout=20)
200
{"object_type": "TweetRaw", "download_datetime": "2021-10-14T13:13:30.509854+02:00", "raw_value": {"created_at": "Thu Oct 14 10:32:32 +0000 2021", "id": 1448597585590169602, "id_str": "1448597585590169602", "full_text": "We offer solutions to waste management problems such as food waste, chicken waste, manure, plastic waste. Our technology solutions are pyrolysis, gasification, biogas plants and incineration. Email: liberty.gura@ndoyenk.co.za  Tel: +27678165210 #gqeberha #covid19", "truncated": false, "display_text_range": [0, 263], "entities": {"hashtags": [{"text": "gqeberha", "indices": [245, 254]}, {"text": "covid19", "indices": [255, 263]}], "symbols": [], "user_mentions": [], "urls": []}, "source": "<a href=\"https://mobile.twitter.com\" rel=\"nofollow\">Twitter Web App</a>", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user_id": 1448593545120657413, "user_id_str": "1448593545120657413", "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "reply_count": 0, "quote_count": 0, "conversation_id": 1448597585590169602, "conversation_id_str": "1448597585590169602", "favorited": false, "retweeted": false, "lang": "en", "supplemental_language": null}}
{"object_type": "TweetRaw", "download_datetime": "2021-10-14T13:13:30.510005+02:00", "raw_value": {"created_at": "Wed Oct 13 22:35:54 +0000 2021", "id": 1448417237346435075, "id_str": "1448417237346435075", "full_text": "i am one of those \"with underlying health conditions\" people \n\nas the freedom of masks and no vax fucks like to refer to \n\nsay its our fault for already being ill if we get covid\n\na year &amp; half not one cold at all but now you all dont bother im fcukin ill\n\n#COVID19 #WearAMask", "truncated": false, "display_text_range": [0, 280], "entities": {"hashtags": [{"text": "COVID19", "indices": [261, 269]}, {"text": "WearAMask", "indices": [270, 280]}], "symbols": [], "user_mentions": [], "urls": []}, "source": "<a href=\"https://mobile.twitter.com\" rel=\"nofollow\">Twitter Web App</a>", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user_id": 1203111083432726529, "user_id_str": "1203111083432726529", "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 5, "reply_count": 2, "quote_count": 0, "conversation_id": 1448417237346435075, "conversation_id_str": "1448417237346435075", "favorited": false, "retweeted": false, "lang": "en", "supplemental_language": null}}
{"object_type": "TweetRaw", "download_datetime": "2021-10-14T13:13:30.510284+02:00", "raw_value": {"created_at": "Thu Oct 14 10:40:22 +0000 2021", "id": 1448599556854222857, "id_str": "1448599556854222857", "full_text": "About those shortages ... yeah ... apparently those might be fake too. They aren't caused by #COVID19 The last few years,  possibly the last decade,  has been the Era of Lying.  \n\n#shortages\n\nhttps://t.co/mfYKdySby9", "truncated": false, "display_text_range": [0, 215], "entities": {"hashtags": [{"text": "COVID19", "indices": [93, 101]}, {"text": "shortages", "indices": [180, 190]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/mfYKdySby9", "expanded_url": "https://rumble.com/vno8yk-la-port-whistleblower.html", "display_url": "rumble.com/vno8yk-la-port\u2026", "indices": [192, 215]}]}, "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user_id": 809679248, "user_id_str": "809679248", "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 2, "favorite_count": 1, "reply_count": 0, "quote_count": 0, "conversation_id": 1448599556854222857, "conversation_id_str": "1448599556854222857", "favorited": false, "retweeted": false, "possibly_sensitive": false, "possibly_sensitive_editable": true, "card": {"name": "summary_large_image", "url": "https://t.co/mfYKdySby9", "card_type_url": "http://card-type-url-is-deprecated.invalid", "binding_values": {"vanity_url": {"type": "STRING", "string_value": "rumble.com", "scribe_key": "vanity_url"}, "domain": {"type": "STRING", "string_value": "rumble.com"}, "site": {"type": "USER", "user_value": {"id_str": "808080314", "path": []}, "scribe_key": "publisher_id"}, "title": {"type": "STRING", "string_value": "LA Port Whistleblower"}, "description": {"type": "STRING", "string_value": "An anonymous worker from the Port of Los Angeles came forward on \"The Stew Peters Show\" to confirm what we have all suspected. #stewpeterstv #laportauthority #usfoodshortage"}, "thumbnail_image_small": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448598398936883208/bBrEpi95?format=jpg&name=144x144", "width": 144, "height": 81, "alt": null}}, "thumbnail_image": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448598398936883208/bBrEpi95?format=jpg&name=280x150", "width": 267, "height": 150, "alt": null}}, "thumbnail_image_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448598398936883208/bBrEpi95?format=jpg&name=800x320_1", "width": 569, "height": 320, "alt": null}}, "thumbnail_image_x_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448598398936883208/bBrEpi95?format=png&name=2048x2048_2_exp", "width": 686, "height": 386, "alt": null}}, "thumbnail_image_original": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448598398936883208/bBrEpi95?format=jpg&name=orig", "width": 686, "height": 386, "alt": null}}, "summary_photo_image_small": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448598398936883208/bBrEpi95?format=jpg&name=386x202", "width": 386, "height": 202, "alt": null}}, "summary_photo_image": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448598398936883208/bBrEpi95?format=jpg&name=600x314", "width": 600, "height": 314, "alt": null}}, "summary_photo_image_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448598398936883208/bBrEpi95?format=jpg&name=800x419", "width": 686, "height": 359, "alt": null}}, "summary_photo_image_x_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448598398936883208/bBrEpi95?format=png&name=2048x2048_2_exp", "width": 686, "height": 386, "alt": null}}, "summary_photo_image_original": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448598398936883208/bBrEpi95?format=jpg&name=orig", "width": 686, "height": 386, "alt": null}}, "photo_image_full_size_small": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448598398936883208/bBrEpi95?format=jpg&name=386x202", "width": 386, "height": 202, "alt": null}}, "photo_image_full_size": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448598398936883208/bBrEpi95?format=jpg&name=600x314", "width": 600, "height": 314, "alt": null}}, "photo_image_full_size_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448598398936883208/bBrEpi95?format=jpg&name=800x419", "width": 686, "height": 359, "alt": null}}, "photo_image_full_size_x_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448598398936883208/bBrEpi95?format=png&name=2048x2048_2_exp", "width": 686, "height": 386, "alt": null}}, "photo_image_full_size_original": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1448598398936883208/bBrEpi95?format=jpg&name=orig", "width": 686, "height": 386, "alt": null}}, "card_url": {"type": "STRING", "string_value": "https://t.co/mfYKdySby9", "scribe_key": "card_url"}}, "users": {"808080314": {"id": 808080314, "id_str": "808080314", "name": "Rumble", "screen_name": "rumblevideo", "location": "", "description": "Rumble started in 2013 as a way to provide small video creators a way to host, manage, distribute and monetize their content.", "url": "https://t.co/AlNgmmPOxR", "entities": {"url": {"urls": [{"url": "https://t.co/AlNgmmPOxR", "expanded_url": "https://rumble.com", "display_url": "rumble.com", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 83575, "fast_followers_count": 0, "normal_followers_count": 83575, "friends_count": 119, "listed_count": 163, "created_at": "Fri Sep 07 03:13:18 +0000 2012", "favourites_count": 747, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": true, "statuses_count": 8321, "media_count": 2393, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "000000", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1283211583888461825/RJx5EonC_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1283211583888461825/RJx5EonC_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/808080314/1605283263", "profile_image_extensions_media_color": {"palette": [{"rgb": {"red": 0, "green": 0, "blue": 0}, "percentage": 90.47}, {"rgb": {"red": 254, "green": 254, "blue": 254}, "percentage": 8.59}]}, "profile_image_extensions_alt_text": null, "profile_image_extensions_media_availability": null, "profile_image_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_banner_extensions_media_color": {"palette": [{"rgb": {"red": 212, "green": 189, "blue": 174}, "percentage": 15.41}, {"rgb": {"red": 241, "green": 39, "blue": 39}, "percentage": 10.99}, {"rgb": {"red": 228, "green": 153, "blue": 0}, "percentage": 10.96}, {"rgb": {"red": 116, "green": 164, "blue": 65}, "percentage": 9.05}, {"rgb": {"red": 239, "green": 208, "blue": 0}, "percentage": 5.69}]}, "profile_banner_extensions_alt_text": null, "profile_banner_extensions_media_availability": null, "profile_banner_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_link_color": "4A913C", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, "has_extended_profile": false, "default_profile": false, "default_profile_image": false, "pinned_tweet_ids": [1431073665412632580], "pinned_tweet_ids_str": ["1431073665412632580"], "has_custom_timelines": false, "can_dm": null, "following": null, "follow_request_sent": null, "notifications": null, "muting": null, "blocking": null, "blocked_by": null, "want_retweets": null, "advertiser_account_type": "promotable_user", "advertiser_account_service_levels": ["smb"], "profile_interstitial_type": "", "business_profile_state": "none", "translator_type": "none", "withheld_in_countries": [], "followed_by": null, "ext": {"highlightedLabel": {"r": {"ok": {}}, "ttl": -1}}, "require_some_consent": false}}, "card_platform": {"platform": {"device": {"name": "Swift", "version": "12"}, "audience": {"name": "production", "bucket": null}}}}, "lang": "en", "supplemental_language": null}}
{"object_type": "TweetRaw", "download_datetime": "2021-10-14T13:13:30.510584+02:00", "raw_value": {"created_at": "Thu Oct 14 04:24:47 +0000 2021", "id": 1448505037521661952, "id_str": "1448505037521661952", "full_text": "@guardiannews It's slightly pointless if you're setting up a new team to principally look and investigate the origins of #COVID19 / #SARSCoV2 if the undisputed ground zero country won't fully cooperate, as detailed later in article: https://t.co/i4Tl9ztLTd\n\nSeems a \u2705 box exercise.", "truncated": false, "display_text_range": [14, 281], "entities": {"hashtags": [{"text": "COVID19", "indices": [121, 129]}, {"text": "SARSCoV2", "indices": [132, 141]}], "symbols": [], "user_mentions": [{"screen_name": "guardiannews", "name": "Guardian news", "id": 788524, "id_str": "788524", "indices": [0, 13]}], "urls": [{"url": "https://t.co/i4Tl9ztLTd", "expanded_url": "https://www.theguardian.com/world/2021/mar/30/who-criticises-chinas-data-sharing-as-it-releases-covid-origins-report", "display_url": "theguardian.com/world/2021/mar\u2026", "indices": [233, 256]}]}, "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "in_reply_to_status_id": 1448502648844558342, "in_reply_to_status_id_str": "1448502648844558342", "in_reply_to_user_id": 788524, "in_reply_to_user_id_str": "788524", "in_reply_to_screen_name": "guardiannews", "user_id": 140459530, "user_id_str": "140459530", "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "reply_count": 0, "quote_count": 0, "conversation_id": 1448502648844558342, "conversation_id_str": "1448502648844558342", "favorited": false, "retweeted": false, "possibly_sensitive": false, "possibly_sensitive_editable": true, "card": {"name": "summary_large_image", "url": "https://t.co/i4Tl9ztLTd", "card_type_url": "http://card-type-url-is-deprecated.invalid", "binding_values": {"vanity_url": {"type": "STRING", "string_value": "theguardian.com", "scribe_key": "vanity_url"}, "amp": {"type": "BOOLEAN", "boolean_value": true}, "app_is_free": {"type": "STRING", "string_value": "true"}, "app_price_currency": {"type": "STRING", "string_value": "USD"}, "app_price_amount": {"type": "STRING", "string_value": "0.0"}, "domain": {"type": "STRING", "string_value": "www.theguardian.com"}, "app_num_ratings": {"type": "STRING", "string_value": "81,475"}, "app_star_rating": {"type": "STRING", "string_value": "4.86606"}, "app_name": {"type": "STRING", "string_value": "The Guardian: Breaking News"}, "site": {"type": "USER", "user_value": {"id_str": "87818409", "path": []}, "scribe_key": "publisher_id"}, "title": {"type": "STRING", "string_value": "UK and US criticise WHO's Covid report and accuse China of withholding data"}, "description": {"type": "STRING", "string_value": "Statement signed by 12 other countries says investigation into origins of virus was not extensive enough"}, "thumbnail_image_small": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1446099479338307591/88UvS0yG?format=jpg&name=144x144", "width": 144, "height": 76, "alt": null}}, "thumbnail_image": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1446099479338307591/88UvS0yG?format=jpg&name=280x150", "width": 280, "height": 147, "alt": null}}, "thumbnail_image_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1446099479338307591/88UvS0yG?format=jpg&name=600x600", "width": 600, "height": 315, "alt": null}}, "thumbnail_image_x_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1446099479338307591/88UvS0yG?format=png&name=2048x2048_2_exp", "width": 1200, "height": 630, "alt": null}}, "thumbnail_image_original": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1446099479338307591/88UvS0yG?format=jpg&name=orig", "width": 1200, "height": 630, "alt": null}}, "summary_photo_image_small": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1446099479338307591/88UvS0yG?format=jpg&name=386x202", "width": 386, "height": 202, "alt": null}}, "summary_photo_image": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1446099479338307591/88UvS0yG?format=jpg&name=600x314", "width": 600, "height": 314, "alt": null}}, "summary_photo_image_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1446099479338307591/88UvS0yG?format=jpg&name=800x419", "width": 800, "height": 419, "alt": null}}, "summary_photo_image_x_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1446099479338307591/88UvS0yG?format=png&name=2048x2048_2_exp", "width": 1200, "height": 630, "alt": null}}, "summary_photo_image_original": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1446099479338307591/88UvS0yG?format=jpg&name=orig", "width": 1200, "height": 630, "alt": null}}, "photo_image_full_size_small": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1446099479338307591/88UvS0yG?format=jpg&name=386x202", "width": 386, "height": 202, "alt": null}}, "photo_image_full_size": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1446099479338307591/88UvS0yG?format=jpg&name=600x314", "width": 600, "height": 314, "alt": null}}, "photo_image_full_size_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1446099479338307591/88UvS0yG?format=jpg&name=800x419", "width": 800, "height": 419, "alt": null}}, "photo_image_full_size_x_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1446099479338307591/88UvS0yG?format=png&name=2048x2048_2_exp", "width": 1200, "height": 630, "alt": null}}, "photo_image_full_size_original": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1446099479338307591/88UvS0yG?format=jpg&name=orig", "width": 1200, "height": 630, "alt": null}}, "card_url": {"type": "STRING", "string_value": "https://t.co/i4Tl9ztLTd", "scribe_key": "card_url"}}, "users": {"87818409": {"id": 87818409, "id_str": "87818409", "name": "The Guardian", "screen_name": "guardian", "location": "London", "description": "The need for independent journalism has never been greater. Become a Guardian supporter: https://t.co/gWyuUVlObq", "url": "https://t.co/c53pnmnuIT", "entities": {"url": {"urls": [{"url": "https://t.co/c53pnmnuIT", "expanded_url": "https://www.theguardian.com", "display_url": "theguardian.com", "indices": [0, 23]}]}, "description": {"urls": [{"url": "https://t.co/gWyuUVlObq", "expanded_url": "https://support.theguardian.com", "display_url": "support.theguardian.com", "indices": [89, 112]}]}}, "protected": false, "followers_count": 9966789, "fast_followers_count": 0, "normal_followers_count": 9966789, "friends_count": 1062, "listed_count": 66845, "created_at": "Thu Nov 05 23:49:19 +0000 2009", "favourites_count": 136, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": true, "statuses_count": 704658, "media_count": 21723, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": true, "profile_background_color": "FFFFFF", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1175141826870861825/K2qKoGla_normal.png", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1175141826870861825/K2qKoGla_normal.png", "profile_banner_url": "https://pbs.twimg.com/profile_banners/87818409/1620214786", "profile_image_extensions_media_color": {"palette": [{"rgb": {"red": 31, "green": 46, "blue": 96}, "percentage": 55.61}, {"rgb": {"red": 255, "green": 255, "blue": 255}, "percentage": 22.05}, {"rgb": {"red": 132, "green": 138, "blue": 165}, "percentage": 0.51}, {"rgb": {"red": 138, "green": 145, "blue": 171}, "percentage": 0.11}]}, "profile_image_extensions_alt_text": null, "profile_image_extensions_media_availability": null, "profile_image_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_banner_extensions_alt_text": null, "profile_banner_extensions_media_availability": null, "profile_banner_extensions_media_color": {"palette": [{"rgb": {"red": 255, "green": 229, "blue": 0}, "percentage": 93.3}, {"rgb": {"red": 146, "green": 131, "blue": 0}, "percentage": 2.93}, {"rgb": {"red": 68, "green": 61, "blue": 0}, "percentage": 1.84}, {"rgb": {"red": 212, "green": 57, "blue": 0}, "percentage": 0.71}, {"rgb": {"red": 26, "green": 24, "blue": 0}, "percentage": 0.71}]}, "profile_banner_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_link_color": "005789", "profile_sidebar_border_color": "FFFFFF", "profile_sidebar_fill_color": "CAE3F3", "profile_text_color": "333333", "profile_use_background_image": false, "has_extended_profile": false, "default_profile": false, "default_profile_image": false, "pinned_tweet_ids": [1389937492065931266], "pinned_tweet_ids_str": ["1389937492065931266"], "has_custom_timelines": true, "can_dm": null, "following": null, "follow_request_sent": null, "notifications": null, "muting": null, "blocking": null, "blocked_by": null, "want_retweets": null, "advertiser_account_type": "promotable_user", "advertiser_account_service_levels": ["dso", "dso", "dso", "dso", "dso", "dso", "media_studio"], "profile_interstitial_type": "", "business_profile_state": "none", "translator_type": "regular", "withheld_in_countries": [], "followed_by": null, "ext": {"highlightedLabel": {"r": {"ok": {}}, "ttl": -1}}, "require_some_consent": false}}, "card_platform": {"platform": {"device": {"name": "Swift", "version": "12"}, "audience": {"name": "production", "bucket": null}}}}, "lang": "en", "supplemental_language": null}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:30.511417+02:00", "raw_value": {"id": 1448593545120657413, "id_str": "1448593545120657413", "name": "Ndoyenk Technology", "screen_name": "NdoyenkT", "location": "", "description": "We are an engineering consultancy company that specilises in providing waste management solutions.", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 0, "fast_followers_count": 0, "normal_followers_count": 0, "friends_count": 0, "listed_count": 0, "created_at": "Thu Oct 14 10:17:09 +0000 2021", "favourites_count": 0, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 5, "media_count": 0, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "F5F8FA", "profile_background_image_url": null, "profile_background_image_url_https": null, "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1448593940387667972/OryRGdgu_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1448593940387667972/OryRGdgu_normal.jpg", "profile_image_extensions_media_color": {"palette": [{"rgb": {"red": 253, "green": 254, "blue": 252}, "percentage": 63.64}, {"rgb": {"red": 57, "green": 242, "blue": 29}, "percentage": 6.63}, {"rgb": {"red": 248, "green": 255, "blue": 193}, "percentage": 3.11}, {"rgb": {"red": 245, "green": 248, "blue": 44}, "percentage": 2.48}, {"rgb": {"red": 157, "green": 245, "blue": 43}, "percentage": 2.17}]}, "profile_image_extensions_alt_text": null, "profile_image_extensions_media_availability": null, "profile_image_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": true, "default_profile_image": false, "pinned_tweet_ids": [], "pinned_tweet_ids_str": [], "has_custom_timelines": false, "can_dm": null, "following": null, "follow_request_sent": null, "notifications": null, "muting": null, "blocking": null, "blocked_by": null, "want_retweets": null, "advertiser_account_type": "none", "advertiser_account_service_levels": [], "profile_interstitial_type": "", "business_profile_state": "none", "translator_type": "none", "withheld_in_countries": [], "followed_by": null, "ext": {"highlightedLabel": {"r": {"ok": {}}, "ttl": -1}}, "require_some_consent": false}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:30.511603+02:00", "raw_value": {"id": 1203111083432726529, "id_str": "1203111083432726529", "name": "The Cat =^.^=", "screen_name": "purrcarriepurrr", "location": "Satan's Pussy", "description": "Dead Synchronicity\n\n#DivestFromWar\ud83c\udff4\udb40\udc67\udb40\udc62\udb40\udc73\udb40\udc63\udb40\udc74\udb40\udc7f\udb40\udc73\udb40\udc63\udb40\udc74\udb40\udc7f \ud83c\udff4\u200d\u2620\ufe0f\n\nautistic/ADHD/cat'", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 2354, "fast_followers_count": 0, "normal_followers_count": 2354, "friends_count": 4403, "listed_count": 9, "created_at": "Sat Dec 07 00:38:43 +0000 2019", "favourites_count": 114169, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 58121, "media_count": 5112, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "F5F8FA", "profile_background_image_url": null, "profile_background_image_url_https": null, "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1447537230248087559/FxMCsCQc_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1447537230248087559/FxMCsCQc_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1203111083432726529/1632690633", "profile_image_extensions_alt_text": null, "profile_image_extensions_media_availability": null, "profile_image_extensions_media_color": {"palette": [{"rgb": {"red": 4, "green": 4, "blue": 4}, "percentage": 99.4}, {"rgb": {"red": 105, "green": 105, "blue": 105}, "percentage": 0.59}]}, "profile_image_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_banner_extensions_alt_text": null, "profile_banner_extensions_media_availability": null, "profile_banner_extensions_media_color": {"palette": [{"rgb": {"red": 27, "green": 30, "blue": 25}, "percentage": 34.47}, {"rgb": {"red": 143, "green": 138, "blue": 125}, "percentage": 20.31}, {"rgb": {"red": 38, "green": 67, "blue": 96}, "percentage": 18.06}, {"rgb": {"red": 70, "green": 77, "blue": 32}, "percentage": 13.46}, {"rgb": {"red": 62, "green": 42, "blue": 33}, "percentage": 3.2}]}, "profile_banner_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": true, "default_profile_image": false, "pinned_tweet_ids": [1400798831139229696], "pinned_tweet_ids_str": ["1400798831139229696"], "has_custom_timelines": true, "can_dm": null, "following": null, "follow_request_sent": null, "notifications": null, "muting": null, "blocking": null, "blocked_by": null, "want_retweets": null, "advertiser_account_type": "promotable_user", "advertiser_account_service_levels": ["analytics"], "profile_interstitial_type": "", "business_profile_state": "none", "translator_type": "none", "withheld_in_countries": [], "followed_by": null, "ext": {"highlightedLabel": {"r": {"ok": {}}, "ttl": -1}}, "require_some_consent": false}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:30.511756+02:00", "raw_value": {"id": 809679248, "id_str": "809679248", "name": "Heidi", "screen_name": "heidiponyrider", "location": " Pacific Northwest", "description": "Sketcher, rider; loves horses and rain. Free speech is for everyone-even conservatives!  #tcot #maga", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 6870, "fast_followers_count": 0, "normal_followers_count": 6870, "friends_count": 7688, "listed_count": 163, "created_at": "Fri Sep 07 22:01:01 +0000 2012", "favourites_count": 323309, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 197202, "media_count": 377, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "EDECE9", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme3/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme3/bg.gif", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/2587046254/whr8emdvi89khbjilhiz_normal.jpeg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/2587046254/whr8emdvi89khbjilhiz_normal.jpeg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/809679248/1429553161", "profile_image_extensions_alt_text": null, "profile_image_extensions_media_availability": null, "profile_image_extensions_media_color": {"palette": [{"rgb": {"red": 21, "green": 27, "blue": 40}, "percentage": 40.4}, {"rgb": {"red": 250, "green": 250, "blue": 250}, "percentage": 36.43}, {"rgb": {"red": 99, "green": 122, "blue": 136}, "percentage": 12.52}, {"rgb": {"red": 134, "green": 137, "blue": 120}, "percentage": 5.19}, {"rgb": {"red": 170, "green": 185, "blue": 120}, "percentage": 0.8}]}, "profile_image_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_banner_extensions_media_color": {"palette": [{"rgb": {"red": 253, "green": 251, "blue": 254}, "percentage": 100.0}]}, "profile_banner_extensions_alt_text": null, "profile_banner_extensions_media_availability": null, "profile_banner_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_link_color": "088253", "profile_sidebar_border_color": "D3D2CF", "profile_sidebar_fill_color": "E3E2DE", "profile_text_color": "634047", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": false, "default_profile_image": false, "pinned_tweet_ids": [1441361361297043457], "pinned_tweet_ids_str": ["1441361361297043457"], "has_custom_timelines": false, "can_dm": null, "following": null, "follow_request_sent": null, "notifications": null, "muting": null, "blocking": null, "blocked_by": null, "want_retweets": null, "advertiser_account_type": "promotable_user", "advertiser_account_service_levels": [], "profile_interstitial_type": "", "business_profile_state": "none", "translator_type": "none", "withheld_in_countries": [], "followed_by": null, "ext": {"highlightedLabel": {"r": {"ok": {}}, "ttl": -1}}, "require_some_consent": false}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:30.511914+02:00", "raw_value": {"id": 140459530, "id_str": "140459530", "name": "James MacDaid", "screen_name": "JMacDaid", "location": "Hackney, London", "description": "No more FB debates, it's all Twitter. #deletefacebook", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 309, "fast_followers_count": 0, "normal_followers_count": 309, "friends_count": 1233, "listed_count": 10, "created_at": "Wed May 05 14:59:12 +0000 2010", "favourites_count": 3961, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, "statuses_count": 1075, "media_count": 96, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "C0DEED", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": true, "profile_image_url": "http://pbs.twimg.com/profile_images/1420101289988481028/AOCmsKbl_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1420101289988481028/AOCmsKbl_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/140459530/1632656597", "profile_image_extensions_alt_text": null, "profile_image_extensions_media_availability": null, "profile_image_extensions_media_color": {"palette": [{"rgb": {"red": 29, "green": 25, "blue": 28}, "percentage": 41.71}, {"rgb": {"red": 187, "green": 189, "blue": 192}, "percentage": 30.94}, {"rgb": {"red": 154, "green": 137, "blue": 122}, "percentage": 5.54}, {"rgb": {"red": 171, "green": 44, "blue": 49}, "percentage": 3.46}, {"rgb": {"red": 94, "green": 38, "blue": 46}, "percentage": 1.4}]}, "profile_image_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_banner_extensions_media_color": {"palette": [{"rgb": {"red": 179, "green": 142, "blue": 96}, "percentage": 30.32}, {"rgb": {"red": 219, "green": 49, "blue": 38}, "percentage": 24.69}, {"rgb": {"red": 76, "green": 70, "blue": 42}, "percentage": 17.19}, {"rgb": {"red": 228, "green": 98, "blue": 89}, "percentage": 7.38}, {"rgb": {"red": 221, "green": 193, "blue": 188}, "percentage": 7.07}]}, "profile_banner_extensions_alt_text": null, "profile_banner_extensions_media_availability": null, "profile_banner_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_link_color": "DD2E44", "profile_sidebar_border_color": "FFFFFF", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "pinned_tweet_ids": [], "pinned_tweet_ids_str": [], "has_custom_timelines": false, "can_dm": null, "following": null, "follow_request_sent": null, "notifications": null, "muting": null, "blocking": null, "blocked_by": null, "want_retweets": null, "advertiser_account_type": "none", "advertiser_account_service_levels": [], "profile_interstitial_type": "", "business_profile_state": "none", "translator_type": "none", "withheld_in_countries": [], "followed_by": null, "ext": {"highlightedLabel": {"r": {"ok": {}}, "ttl": -1}}, "require_some_consent": false}}
last_scrap_zero False is_cursor True
need_guest_token True
run request RequestDetails(http_method=<HttpMethod.GET: 1>, url='https://twitter.com/i/api/2/search/adaptive.json', headers={'Authorization': 'Bearer AAAAAAAAAAAAAAAAAAAAANRILgAAAAAAnNwIzUejRCOuH5E6I8xnZz4puTs%3D1Zv7ttfk8LF81IUq16cHjhLTvJu4FA33AGWWjCpTnA', 'x-guest-token': '1448607857604272138'}, params={'include_profile_interstitial_type': '1', 'include_blocking': '1', 'include_blocked_by': '1', 'include_followed_by': '1', 'include_want_retweets': '1', 'include_mute_edge': '1', 'include_can_dm': '1', 'include_can_media_tag': '1', 'skip_status': '1', 'cards_platform': 'Web-12', 'include_cards': '1', 'include_ext_alt_text': 'true', 'include_quote_count': 'true', 'include_reply_count': '1', 'tweet_mode': 'extended', 'include_entities': 'true', 'include_user_entities': 'true', 'include_ext_media_color': 'true', 'include_ext_media_availability': 'true', 'send_error_codes': 'true', 'simple_quoted_tweet': 'true', 'q': '#covid19', 'count': 20, 'query_source': 'typed_query', 'pc': '1', 'spelling_corrections': '1', 'ext': 'mediaStats,highlightedLabel,voiceInfo', 'cursor': 'scroll:thGAVUV0VFVBYBFoDU6LWJx7GaKBIYzAUAAAAALo2zCAAAAIIAAAAAAAAVfAAAAAcAAABWKEQIAAAiAQMIQEYELkQQAHCAAEEACAAAAAEBgAiAoYCJwIgQAIRJgTEQlAAACAADCgAMEAAAIQAAAgggwWRCCIWQEgmlBAAACCApaAEAAAEBAAODGEkgAACABAAtARCCBFAYAgABAIEgEQADVEAYKAAAAATQBAEBAB6JDAUEAAEAAFAMIkCFJQKCCREFAADGEARAJCAQgBCECCipgAAAIRAABEIAAEESACAAAAQARAYgAJAAoQIgQACBBgA1ADCAAAIIAAEAAACAAAAgQCGARAECAAIgBAAAAyBABYAAIAAIBaAIsAMEAIQUAAQABCQBAGQGsmAhAACxGANIQSAEggQEAwCIgDAAgAAAAAAIQIABBAwAEAACCKAAOAQSGAAJHkTBCAkAIgDBhFQgQgAaQBUCAoCABUAABAGQpABAIACIREQIMBRMAAgwAAAQEAACAAICAoAAAmACFJAAIIAEwwMiBAAAAAAgwAICBACINGQgQAGBCCBIAIIQAEAkCgAAmBAAEgAEIQBRCIOEECECQCAALhCAAAIAIAAAABAAGQRAoDSAURKAmAEgAIIAAUAGMSgAAECA7EAAGAASAQhAOAAAQAEESIgAEAAAAADkkQMIgCApQUAACADCAKAASAOAEBAAgAAgAAIQUIIAkGADDAECAAQCACAsgGoC8AYQAgCAiCSQYQAJQ0AAQAMFABkSAAgDAAAAAGAIACQQEIAwgwCAEkAAABAIAFQgIBRAUFQ0EAQCAEEAABQAEgBCRAwAhEAAAgAAQgAjA0aAAgPkQAiEAAAAAoBIIAACQCCqUAFgAKIQFgQAzQACgBBAAoBgIRACAAAAABBAAAAAAEACMIAAAEQAhEQAQBKAaIAAIADAIATEAigAEAAAAAghpACAQKACCSAJKEIAIACg8AABCGEVsPR5FYCJehgGVE9QSUNTNYQCFQ4VAAA='}, timeout=20)
200
{"object_type": "TweetRaw", "download_datetime": "2021-10-14T13:13:31.348435+02:00", "raw_value": {"created_at": "Thu Oct 14 07:33:16 +0000 2021", "id": 1448552470469390336, "id_str": "1448552470469390336", "full_text": "Both #COVID19 and flu have the potential to cause serious illness.\n\nDrAmirKhanGP DrKaranRajan and DrDawnHarper explain why vaccines are the best protection against these diseases this winter \ud83d\udc47\n\nMore info: https://t.co/aRv8vEA1hs https://t.co/NL8AhefpVW", "truncated": false, "display_text_range": [0, 252], "entities": {"hashtags": [{"text": "COVID19", "indices": [5, 13]}], "symbols": [], "user_mentions": [], "urls": [{"url": "https://t.co/aRv8vEA1hs", "expanded_url": "http://nhs.uk/wintervaccinations", "display_url": "nhs.uk/wintervaccinat\u2026", "indices": [205, 228]}], "media": [{"id": 1448321404127137796, "id_str": "1448321404127137796", "indices": [229, 252], "media_url": "http://pbs.twimg.com/amplify_video_thumb/1448321404127137796/img/t2JTrs6qaaBUhlCY.jpg", "media_url_https": "https://pbs.twimg.com/amplify_video_thumb/1448321404127137796/img/t2JTrs6qaaBUhlCY.jpg", "url": "https://t.co/NL8AhefpVW", "display_url": "pic.twitter.com/NL8AhefpVW", "expanded_url": "https://twitter.com/DHSCgovuk/status/1448551648708763651/video/1", "type": "photo", "original_info": {"width": 720, "height": 720}, "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 680, "h": 680, "resize": "fit"}, "medium": {"w": 720, "h": 720, "resize": "fit"}, "large": {"w": 720, "h": 720, "resize": "fit"}}, "source_status_id": 1448551648708763651, "source_status_id_str": "1448551648708763651", "source_user_id": 37963496, "source_user_id_str": "37963496"}]}, "extended_entities": {"media": [{"id": 1448321404127137796, "id_str": "1448321404127137796", "indices": [229, 252], "media_url": "http://pbs.twimg.com/amplify_video_thumb/1448321404127137796/img/t2JTrs6qaaBUhlCY.jpg", "media_url_https": "https://pbs.twimg.com/amplify_video_thumb/1448321404127137796/img/t2JTrs6qaaBUhlCY.jpg", "url": "https://t.co/NL8AhefpVW", "display_url": "pic.twitter.com/NL8AhefpVW", "expanded_url": "https://twitter.com/DHSCgovuk/status/1448551648708763651/video/1", "type": "video", "original_info": {"width": 720, "height": 720}, "sizes": {"thumb": {"w": 150, "h": 150, "resize": "crop"}, "small": {"w": 680, "h": 680, "resize": "fit"}, "medium": {"w": 720, "h": 720, "resize": "fit"}, "large": {"w": 720, "h": 720, "resize": "fit"}}, "source_status_id": 1448551648708763651, "source_status_id_str": "1448551648708763651", "source_user_id": 37963496, "source_user_id_str": "37963496", "video_info": {"aspect_ratio": [1, 1], "duration_millis": 60000, "variants": [{"content_type": "application/x-mpegURL", "url": "https://video.twimg.com/amplify_video/1448321404127137796/pl/lfgVg84mh2Ke-F4e.m3u8?tag=14"}, {"bitrate": 1280000, "content_type": "video/mp4", "url": "https://video.twimg.com/amplify_video/1448321404127137796/vid/720x720/tsG7mMIhi-MODl1Q.mp4?tag=14"}, {"bitrate": 432000, "content_type": "video/mp4", "url": "https://video.twimg.com/amplify_video/1448321404127137796/vid/320x320/tmjxeB_CFIgNQTEp.mp4?tag=14"}, {"bitrate": 832000, "content_type": "video/mp4", "url": "https://video.twimg.com/amplify_video/1448321404127137796/vid/540x540/VHzUcvCHTj2CcNFl.mp4?tag=14"}]}, "media_key": "13_1448321404127137796", "ext_media_color": {"palette": [{"rgb": {"red": 179, "green": 178, "blue": 183}, "percentage": 58.76}, {"rgb": {"red": 141, "green": 3, "blue": 39}, "percentage": 23.93}, {"rgb": {"red": 40, "green": 35, "blue": 34}, "percentage": 11.63}, {"rgb": {"red": 87, "green": 15, "blue": 29}, "percentage": 3.08}, {"rgb": {"red": 221, "green": 227, "blue": 238}, "percentage": 0.65}]}, "ext_alt_text": null, "ext_media_availability": {"status": "available"}, "ext": {"mediaStats": {"r": {"ok": {"viewCount": "2512"}}, "ttl": -1}}, "additional_media_info": {"title": "", "description": "", "embeddable": true, "monetizable": false, "source_user": {"id": 37963496, "id_str": "37963496", "name": "Department of Health and Social Care", "screen_name": "DHSCgovuk", "location": "England", "description": "We support ministers in leading the nation\u2019s health and social care to help people live more independent, healthier lives for longer.", "url": "https://t.co/huTVx4oOR0", "entities": {"url": {"urls": [{"url": "https://t.co/huTVx4oOR0", "expanded_url": "http://www.gov.uk/dhsc", "display_url": "gov.uk/dhsc", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 708826, "fast_followers_count": 0, "normal_followers_count": 708826, "friends_count": 924, "listed_count": 4248, "created_at": "Tue May 05 16:49:31 +0000 2009", "favourites_count": 3540, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": true, "statuses_count": 22681, "media_count": 6430, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "009781", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1410495863651278849/D7pssXrD_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1410495863651278849/D7pssXrD_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/37963496/1626650297", "profile_image_extensions_media_color": {"palette": [{"rgb": {"red": 0, "green": 166, "blue": 142}, "percentage": 83.91}, {"rgb": {"red": 241, "green": 250, "blue": 248}, "percentage": 12.41}, {"rgb": {"red": 154, "green": 218, "blue": 208}, "percentage": 3.83}, {"rgb": {"red": 135, "green": 202, "blue": 194}, "percentage": 0.65}]}, "profile_image_extensions_alt_text": null, "profile_image_extensions_media_availability": null, "profile_image_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_banner_extensions_alt_text": null, "profile_banner_extensions_media_availability": null, "profile_banner_extensions_media_color": {"palette": [{"rgb": {"red": 252, "green": 164, "blue": 90}, "percentage": 95.44}, {"rgb": {"red": 173, "green": 105, "blue": 89}, "percentage": 2.78}, {"rgb": {"red": 138, "green": 187, "blue": 217}, "percentage": 0.91}, {"rgb": {"red": 133, "green": 54, "blue": 88}, "percentage": 0.58}]}, "profile_banner_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_link_color": "18828E", "profile_sidebar_border_color": "99D5CD", "profile_sidebar_fill_color": "EDFEFC", "profile_text_color": "333333", "profile_use_background_image": false, "has_extended_profile": false, "default_profile": false, "default_profile_image": false, "pinned_tweet_ids": [1448538473259016202], "pinned_tweet_ids_str": ["1448538473259016202"], "has_custom_timelines": true, "can_dm": null, "following": null, "follow_request_sent": null, "notifications": null, "muting": null, "blocking": null, "blocked_by": null, "want_retweets": null, "advertiser_account_type": "promotable_user", "advertiser_account_service_levels": ["media_studio"], "profile_interstitial_type": "", "business_profile_state": "none", "translator_type": "none", "withheld_in_countries": [], "followed_by": null, "ext": {"highlightedLabel": {"r": {"ok": {}}, "ttl": -1}}, "require_some_consent": false}}}]}, "source": "<a href=\"https://zapier.com/\" rel=\"nofollow\">Zapier.com</a>", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user_id": 1260488764922761216, "user_id_str": "1260488764922761216", "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 1, "favorite_count": 0, "reply_count": 0, "quote_count": 0, "conversation_id": 1448552470469390336, "conversation_id_str": "1448552470469390336", "favorited": false, "retweeted": false, "possibly_sensitive": false, "possibly_sensitive_editable": true, "card": {"name": "summary_large_image", "url": "https://t.co/aRv8vEA1hs", "card_type_url": "http://card-type-url-is-deprecated.invalid", "binding_values": {"vanity_url": {"type": "STRING", "string_value": "nhs.uk", "scribe_key": "vanity_url"}, "domain": {"type": "STRING", "string_value": "www.nhs.uk"}, "creator": {"type": "USER", "user_value": {"id_str": "10215212", "path": []}}, "site": {"type": "USER", "user_value": {"id_str": "10215212", "path": []}, "scribe_key": "publisher_id"}, "title": {"type": "STRING", "string_value": "Flu vaccine"}, "summary_photo_image_alt_text": {"type": "STRING", "string_value": "nhs.uk"}, "photo_image_full_size_alt_text": {"type": "STRING", "string_value": "nhs.uk"}, "description": {"type": "STRING", "string_value": "Find information about the flu jab, including who should have it, why and when."}, "thumbnail_image_small": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1445148755708289026/CvHQh98_?format=png&name=144x144", "width": 144, "height": 76, "alt": "nhs.uk"}}, "thumbnail_image": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1445148755708289026/CvHQh98_?format=png&name=280x150", "width": 280, "height": 147, "alt": "nhs.uk"}}, "thumbnail_image_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1445148755708289026/CvHQh98_?format=png&name=600x600", "width": 600, "height": 315, "alt": "nhs.uk"}}, "thumbnail_image_x_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1445148755708289026/CvHQh98_?format=png&name=2048x2048_2_exp", "width": 1200, "height": 630, "alt": "nhs.uk"}}, "thumbnail_image_original": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1445148755708289026/CvHQh98_?format=png&name=orig", "width": 1200, "height": 630, "alt": "nhs.uk"}}, "summary_photo_image_small": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1445148755708289026/CvHQh98_?format=png&name=386x202", "width": 386, "height": 202, "alt": "nhs.uk"}}, "summary_photo_image": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1445148755708289026/CvHQh98_?format=png&name=600x314", "width": 600, "height": 314, "alt": "nhs.uk"}}, "summary_photo_image_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1445148755708289026/CvHQh98_?format=png&name=800x419", "width": 800, "height": 419, "alt": "nhs.uk"}}, "summary_photo_image_x_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1445148755708289026/CvHQh98_?format=png&name=2048x2048_2_exp", "width": 1200, "height": 630, "alt": "nhs.uk"}}, "summary_photo_image_original": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1445148755708289026/CvHQh98_?format=png&name=orig", "width": 1200, "height": 630, "alt": "nhs.uk"}}, "photo_image_full_size_small": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1445148755708289026/CvHQh98_?format=png&name=386x202", "width": 386, "height": 202, "alt": "nhs.uk"}}, "photo_image_full_size": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1445148755708289026/CvHQh98_?format=png&name=600x314", "width": 600, "height": 314, "alt": "nhs.uk"}}, "photo_image_full_size_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1445148755708289026/CvHQh98_?format=png&name=800x419", "width": 800, "height": 419, "alt": "nhs.uk"}}, "photo_image_full_size_x_large": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1445148755708289026/CvHQh98_?format=png&name=2048x2048_2_exp", "width": 1200, "height": 630, "alt": "nhs.uk"}}, "photo_image_full_size_original": {"type": "IMAGE", "image_value": {"url": "https://pbs.twimg.com/card_img/1445148755708289026/CvHQh98_?format=png&name=orig", "width": 1200, "height": 630, "alt": "nhs.uk"}}, "card_url": {"type": "STRING", "string_value": "https://t.co/aRv8vEA1hs", "scribe_key": "card_url"}}, "users": {"10215212": {"id": 10215212, "id_str": "10215212", "name": "NHS", "screen_name": "NHSuk", "location": "England", "description": "Official site of the English NHS. Monitored weekdays 9am - 5:30pm. \n\nView our privacy policy here: https://t.co/oDf9aq6hL2", "url": "https://t.co/2SPjpIySsl", "entities": {"url": {"urls": [{"url": "https://t.co/2SPjpIySsl", "expanded_url": "http://www.nhs.uk", "display_url": "nhs.uk", "indices": [0, 23]}]}, "description": {"urls": [{"url": "https://t.co/oDf9aq6hL2", "expanded_url": "http://www.nhs.uk/our-policies/privacy-policy/", "display_url": "nhs.uk/our-policies/p\u2026", "indices": [99, 122]}]}}, "protected": false, "followers_count": 582534, "fast_followers_count": 0, "normal_followers_count": 582534, "friends_count": 5297, "listed_count": 2859, "created_at": "Tue Nov 13 14:29:47 +0000 2007", "favourites_count": 3759, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": true, "statuses_count": 29172, "media_count": 10068, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "E7E7E7", "profile_background_image_url": "http://abs.twimg.com/images/themes/theme3/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme3/bg.gif", "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1022804148914475010/_UpTINfK_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1022804148914475010/_UpTINfK_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/10215212/1626849918", "profile_image_extensions_alt_text": null, "profile_image_extensions_media_availability": null, "profile_image_extensions_media_color": {"palette": [{"rgb": {"red": 255, "green": 255, "blue": 255}, "percentage": 87.42}, {"rgb": {"red": 2, "green": 94, "blue": 184}, "percentage": 9.9}, {"rgb": {"red": 99, "green": 155, "blue": 210}, "percentage": 2.67}]}, "profile_image_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_banner_extensions_alt_text": null, "profile_banner_extensions_media_availability": null, "profile_banner_extensions_media_color": {"palette": [{"rgb": {"red": 50, "green": 63, "blue": 132}, "percentage": 41.75}, {"rgb": {"red": 50, "green": 13, "blue": 117}, "percentage": 37.32}, {"rgb": {"red": 50, "green": 95, "blue": 142}, "percentage": 8.79}, {"rgb": {"red": 237, "green": 225, "blue": 62}, "percentage": 3.47}, {"rgb": {"red": 165, "green": 156, "blue": 86}, "percentage": 3.45}]}, "profile_banner_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_link_color": "0074C6", "profile_sidebar_border_color": "FFFFFF", "profile_sidebar_fill_color": "F2F2F2", "profile_text_color": "585858", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "pinned_tweet_ids": [1386425260015341569], "pinned_tweet_ids_str": ["1386425260015341569"], "has_custom_timelines": true, "can_dm": null, "following": null, "follow_request_sent": null, "notifications": null, "muting": null, "blocking": null, "blocked_by": null, "want_retweets": null, "advertiser_account_type": "promotable_user", "advertiser_account_service_levels": ["dso", "dso", "dso", "dso", "dso", "media_studio"], "profile_interstitial_type": "", "business_profile_state": "none", "translator_type": "none", "withheld_in_countries": [], "followed_by": null, "ext": {"highlightedLabel": {"r": {"ok": {}}, "ttl": -1}}, "require_some_consent": false}}, "card_platform": {"platform": {"device": {"name": "Swift", "version": "12"}, "audience": {"name": "production", "bucket": null}}}}, "lang": "en", "supplemental_language": null}}
{"object_type": "TweetRaw", "download_datetime": "2021-10-14T13:13:31.348607+02:00", "raw_value": {"created_at": "Thu Oct 14 00:08:33 +0000 2021", "id": 1448440554119786497, "id_str": "1448440554119786497", "full_text": "Why has #COVID19 turned everone into cunts?", "truncated": false, "display_text_range": [0, 43], "entities": {"hashtags": [{"text": "COVID19", "indices": [8, 16]}], "symbols": [], "user_mentions": [], "urls": []}, "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user_id": 1015430391329673216, "user_id_str": "1015430391329673216", "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "reply_count": 0, "quote_count": 0, "conversation_id": 1448440554119786497, "conversation_id_str": "1448440554119786497", "favorited": false, "retweeted": false, "lang": "en", "supplemental_language": null}}
{"object_type": "TweetRaw", "download_datetime": "2021-10-14T13:13:31.348724+02:00", "raw_value": {"created_at": "Thu Oct 14 02:29:32 +0000 2021", "id": 1448476033708027905, "id_str": "1448476033708027905", "full_text": "Imma be honest it kinda like sucks that #COVID19 is a trending tab ...", "truncated": false, "display_text_range": [0, 70], "entities": {"hashtags": [{"text": "COVID19", "indices": [40, 48]}], "symbols": [], "user_mentions": [], "urls": []}, "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "in_reply_to_status_id": null, "in_reply_to_status_id_str": null, "in_reply_to_user_id": null, "in_reply_to_user_id_str": null, "in_reply_to_screen_name": null, "user_id": 1307885683013345280, "user_id_str": "1307885683013345280", "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, "retweet_count": 0, "favorite_count": 0, "reply_count": 0, "quote_count": 0, "conversation_id": 1448476033708027905, "conversation_id_str": "1448476033708027905", "favorited": false, "retweeted": false, "lang": "en", "supplemental_language": null}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:31.349633+02:00", "raw_value": {"id": 1260488764922761216, "id_str": "1260488764922761216", "name": "The Chapel Medical Centre", "screen_name": "ChapelMedical", "location": "Slough ", "description": "The Chapel Medical Centre has been established for around 10 years serving the community of #Slough to provide excellent healthcare.", "url": "https://t.co/rHAC9VHdrG", "entities": {"url": {"urls": [{"url": "https://t.co/rHAC9VHdrG", "expanded_url": "http://www.chapelmedicalcentreslough.nhs.uk", "display_url": "chapelmedicalcentreslough.nhs.uk", "indices": [0, 23]}]}, "description": {"urls": []}}, "protected": false, "followers_count": 56, "fast_followers_count": 0, "normal_followers_count": 56, "friends_count": 482, "listed_count": 0, "created_at": "Wed May 13 08:35:26 +0000 2020", "favourites_count": 7, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 4019, "media_count": 1622, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "F5F8FA", "profile_background_image_url": null, "profile_background_image_url_https": null, "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1354723304284839936/7bEpqHFO_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1354723304284839936/7bEpqHFO_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1260488764922761216/1589359356", "profile_image_extensions_alt_text": null, "profile_image_extensions_media_availability": null, "profile_image_extensions_media_color": {"palette": [{"rgb": {"red": 255, "green": 255, "blue": 255}, "percentage": 94.0}, {"rgb": {"red": 82, "green": 187, "blue": 198}, "percentage": 5.9}, {"rgb": {"red": 10, "green": 172, "blue": 201}, "percentage": 0.1}]}, "profile_image_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_banner_extensions_alt_text": null, "profile_banner_extensions_media_availability": null, "profile_banner_extensions_media_color": {"palette": [{"rgb": {"red": 191, "green": 195, "blue": 196}, "percentage": 56.7}, {"rgb": {"red": 112, "green": 116, "blue": 117}, "percentage": 26.94}, {"rgb": {"red": 29, "green": 33, "blue": 34}, "percentage": 22.58}]}, "profile_banner_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": true, "default_profile_image": false, "pinned_tweet_ids": [], "pinned_tweet_ids_str": [], "has_custom_timelines": false, "can_dm": null, "following": null, "follow_request_sent": null, "notifications": null, "muting": null, "blocking": null, "blocked_by": null, "want_retweets": null, "advertiser_account_type": "none", "advertiser_account_service_levels": [], "profile_interstitial_type": "", "business_profile_state": "none", "translator_type": "none", "withheld_in_countries": [], "followed_by": null, "ext": {"highlightedLabel": {"r": {"ok": {}}, "ttl": -1}}, "require_some_consent": false}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:31.349867+02:00", "raw_value": {"id": 1015430391329673216, "id_str": "1015430391329673216", "name": "EdNigma", "screen_name": "EdNigma13", "location": "", "description": "Stay Vigilant. Wear a Mask. COVID is Airborne.", "url": null, "entities": {"description": {"urls": []}}, "protected": false, "followers_count": 11, "fast_followers_count": 0, "normal_followers_count": 11, "friends_count": 195, "listed_count": 0, "created_at": "Sat Jul 07 03:00:45 +0000 2018", "favourites_count": 2925, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 918, "media_count": 24, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "F5F8FA", "profile_background_image_url": null, "profile_background_image_url_https": null, "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1146644352350871552/POycrTaE_normal.png", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1146644352350871552/POycrTaE_normal.png", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1015430391329673216/1562435656", "profile_image_extensions_alt_text": null, "profile_image_extensions_media_availability": null, "profile_image_extensions_media_color": {"palette": [{"rgb": {"red": 28, "green": 21, "blue": 18}, "percentage": 35.99}, {"rgb": {"red": 101, "green": 89, "blue": 45}, "percentage": 17.49}, {"rgb": {"red": 74, "green": 22, "blue": 19}, "percentage": 16.7}, {"rgb": {"red": 149, "green": 34, "blue": 27}, "percentage": 9.58}, {"rgb": {"red": 54, "green": 89, "blue": 72}, "percentage": 4.9}]}, "profile_image_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_banner_extensions_alt_text": null, "profile_banner_extensions_media_availability": null, "profile_banner_extensions_media_color": {"palette": [{"rgb": {"red": 22, "green": 31, "blue": 26}, "percentage": 39.44}, {"rgb": {"red": 235, "green": 158, "blue": 117}, "percentage": 15.03}, {"rgb": {"red": 160, "green": 59, "blue": 57}, "percentage": 10.37}, {"rgb": {"red": 93, "green": 62, "blue": 78}, "percentage": 7.03}, {"rgb": {"red": 141, "green": 131, "blue": 97}, "percentage": 6.16}]}, "profile_banner_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": false, "default_profile": true, "default_profile_image": false, "pinned_tweet_ids": [], "pinned_tweet_ids_str": [], "has_custom_timelines": false, "can_dm": null, "following": null, "follow_request_sent": null, "notifications": null, "muting": null, "blocking": null, "blocked_by": null, "want_retweets": null, "advertiser_account_type": "promotable_user", "advertiser_account_service_levels": ["analytics"], "profile_interstitial_type": "", "business_profile_state": "none", "translator_type": "none", "withheld_in_countries": [], "followed_by": null, "ext": {"highlightedLabel": {"r": {"ok": {}}, "ttl": -1}}, "require_some_consent": false}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:31.350072+02:00", "raw_value": {"id": 1307885683013345280, "id_str": "1307885683013345280", "name": "Lone Wandering Furry", "screen_name": "LoneFurry", "location": "", "description": "https://t.co/RAg3jM4Qdc I made this to finally comment on a favourite artist & showing my love for Martha MINORS WILL BE BLOCKED!! 18+ only! \ud83d\udd1e\ud83d\udd1e", "url": null, "entities": {"description": {"urls": [{"url": "https://t.co/RAg3jM4Qdc", "expanded_url": "https://www.reddit.com/r/627842/", "display_url": "reddit.com/r/627842/", "indices": [0, 23]}]}}, "protected": false, "followers_count": 11, "fast_followers_count": 0, "normal_followers_count": 11, "friends_count": 65, "listed_count": 1, "created_at": "Mon Sep 21 03:34:25 +0000 2020", "favourites_count": 5659, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, "statuses_count": 6358, "media_count": 719, "lang": null, "contributors_enabled": false, "is_translator": false, "is_translation_enabled": false, "profile_background_color": "F5F8FA", "profile_background_image_url": null, "profile_background_image_url_https": null, "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1307886390818996225/2soZ8mL1_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1307886390818996225/2soZ8mL1_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1307885683013345280/1600828901", "profile_image_extensions_alt_text": null, "profile_image_extensions_media_availability": null, "profile_image_extensions_media_color": {"palette": [{"rgb": {"red": 251, "green": 252, "blue": 252}, "percentage": 39.66}, {"rgb": {"red": 247, "green": 182, "blue": 206}, "percentage": 11.85}, {"rgb": {"red": 196, "green": 149, "blue": 217}, "percentage": 9.95}, {"rgb": {"red": 238, "green": 66, "blue": 139}, "percentage": 8.75}, {"rgb": {"red": 250, "green": 246, "blue": 152}, "percentage": 8.18}]}, "profile_image_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_banner_extensions_alt_text": null, "profile_banner_extensions_media_availability": null, "profile_banner_extensions_media_color": {"palette": [{"rgb": {"red": 255, "green": 255, "blue": 255}, "percentage": 53.05}, {"rgb": {"red": 239, "green": 216, "blue": 84}, "percentage": 29.78}, {"rgb": {"red": 235, "green": 222, "blue": 157}, "percentage": 3.87}, {"rgb": {"red": 38, "green": 38, "blue": 38}, "percentage": 3.6}, {"rgb": {"red": 195, "green": 99, "blue": 66}, "percentage": 1.94}]}, "profile_banner_extensions": {"mediaStats": {"r": {"missing": null}, "ttl": -1}}, "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, "has_extended_profile": true, "default_profile": true, "default_profile_image": false, "pinned_tweet_ids": [1379200295289298944], "pinned_tweet_ids_str": ["1379200295289298944"], "has_custom_timelines": true, "can_dm": null, "following": null, "follow_request_sent": null, "notifications": null, "muting": null, "blocking": null, "blocked_by": null, "want_retweets": null, "advertiser_account_type": "none", "advertiser_account_service_levels": [], "profile_interstitial_type": "", "business_profile_state": "none", "translator_type": "none", "withheld_in_countries": [], "followed_by": null, "ext": {"highlightedLabel": {"r": {"ok": {}}, "ttl": -1}}, "require_some_consent": false}}
last_scrap_zero False is_cursor True
need_guest_token True
run request RequestDetails(http_method=<HttpMethod.GET: 1>, url='https://twitter.com/i/api/2/search/adaptive.json', headers={'Authorization': 'Bearer AAAAAAAAAAAAAAAAAAAAANRILgAAAAAAnNwIzUejRCOuH5E6I8xnZz4puTs%3D1Zv7ttfk8LF81IUq16cHjhLTvJu4FA33AGWWjCpTnA', 'x-guest-token': '1448607857604272138'}, params={'include_profile_interstitial_type': '1', 'include_blocking': '1', 'include_blocked_by': '1', 'include_followed_by': '1', 'include_want_retweets': '1', 'include_mute_edge': '1', 'include_can_dm': '1', 'include_can_media_tag': '1', 'skip_status': '1', 'cards_platform': 'Web-12', 'include_cards': '1', 'include_ext_alt_text': 'true', 'include_quote_count': 'true', 'include_reply_count': '1', 'tweet_mode': 'extended', 'include_entities': 'true', 'include_user_entities': 'true', 'include_ext_media_color': 'true', 'include_ext_media_availability': 'true', 'send_error_codes': 'true', 'simple_quoted_tweet': 'true', 'q': '#covid19', 'count': 20, 'query_source': 'typed_query', 'pc': '1', 'spelling_corrections': '1', 'ext': 'mediaStats,highlightedLabel,voiceInfo', 'cursor': 'scroll:thGAVUV0VFVBYBFoDU6LWJx7GaKBIYzAUAAAAALo2zCAAAAIUAAAAAAAAVfAAAAAcAAABWKEQIAAAiAQMIQEYELkQQAHCAAEEACAAAAAEBgAiAoYCJwIgQAIRJgTEQlAAACAADCgAMEAAAIQAAAgggwWRCCIWQEgmlBAAACCApaAEAAAEBAAODGEkgAACABAAtARCCBFAYAgABAIEgEQADVEAYOAAAAATQBAEBAB6JDAUEAAEAAFAMIkCFJQKCCREFAADGEARAJCAQgBCECCipgAAAIRAABEIAAEkSACAAAAQARBYgAJAAoQIgQAKBBgA1ADGAAAIIAAEAAACAAAAgQCGARAECAAIgBAAAAyBABYAAIAAIBaAIsAMEAIQUAAQABCQBAGQGsmAhAACxGANIQSAEggQEAwCIgDAAgAAAAAAIQIABBAwAEAACCKAAOAQSGAAJHkTBCAkAIgDBhFQgQgAaQBUCAoCABUAABAGSpABAIACIREQIMBRMCAgwAAAQEAACAAICAoAAAmACFJAAIIAEwwMiBAAAAAAgwAICBACINGQgQAGBCCBIAIIQAEAkCgAAmBAAEgAEIQBRCIOEECECQCAALhCAAAIAIEAAABAAGQRAoDSAURKAmAEgAIIAAcAGMSgAAECA7EAAGAASAQhAOAAAQAEESIgAEAAAAADkkQMIgCApQUAACADCAKAASAOAEBAAgAAgAAIQUIIAkGADDAECAAQDACAsgGoC8AcQAgCAiCSQYQAJQ0AAQAMFABkSAAgDAQAAAGAIACQQEIAwgwCAMmAAABAIAFQgIBRAUFQ0EAQCAEEAABUAEgBCRAwAhEAAAgAAQgAjA0aAAgPkQAiEAAAAAoBIIAACQCCqWAFgAKIQFgQIzQACgBBAAoBgIRACAAAAABBAAAAAAEACMIABAEQIhEQAQBKAaIAAIADAIATEAigAECAAAAghpACAQKACCSAJKEIAIACg8AABCGEV9PN5FYCJehgGVE9QSUNTNYoCFRAVAAA='}, timeout=20)
200
last_scrap_zero True is_cursor True
#####################
### try_search finish
#####################
#####################
### try_user_scrap start
#####################
need_guest_token True
need_guest_token False
run request RequestDetails(http_method=<HttpMethod.POST: 2>, url='https://api.twitter.com/1.1/guest/activate.json', headers={'Authorization': 'Bearer AAAAAAAAAAAAAAAAAAAAANRILgAAAAAAnNwIzUejRCOuH5E6I8xnZz4puTs%3D1Zv7ttfk8LF81IUq16cHjhLTvJu4FA33AGWWjCpTnA'}, params={}, timeout=20)
run request RequestDetails(http_method=<HttpMethod.GET: 1>, url='https://twitter.com/i/api/graphql/cYsDlVss-qimNYmNlb6inw/UserByScreenName', headers={'Authorization': 'Bearer AAAAAAAAAAAAAAAAAAAAANRILgAAAAAAnNwIzUejRCOuH5E6I8xnZz4puTs%3D1Zv7ttfk8LF81IUq16cHjhLTvJu4FA33AGWWjCpTnA', 'x-guest-token': '1448607903078920194'}, params={'variables': '{"screen_name": "iga_swiatek", "withSafetyModeUserFields": true, "withSuperFollowsUserFields": true}'}, timeout=20)
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:32.699304+02:00", "raw_value": {"__typename": "User", "id": "VXNlcjoxMDg3Mjg5MzY1NTQ0NTM0MDE2", "rest_id": "1087289365544534016", "affiliates_highlighted_label": {}, "legacy": {"created_at": "Mon Jan 21 10:02:40 +0000 2019", "default_profile": true, "default_profile_image": false, "description": "\ud83c\uddf5\ud83c\uddf1 Professional Tennis Player | Trying to put this yellow fluffy thing between the lines.  | #teamSwiatek", "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "igaswiatek.pl", "expanded_url": "http://igaswiatek.pl", "url": "https://t.co/kwWMhNEokN", "indices": [0, 23]}]}}, "fast_followers_count": 0, "favourites_count": 1088, "followers_count": 183746, "friends_count": 31, "has_custom_timelines": true, "is_translator": false, "listed_count": 528, "location": "Warszawa, Polska", "media_count": 356, "name": "Iga \u015awi\u0105tek", "normal_followers_count": 183746, "pinned_tweet_ids_str": [], "profile_banner_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 39.32, "rgb": {"blue": 160, "green": 172, "red": 172}}, {"percentage": 30.72, "rgb": {"blue": 21, "green": 27, "red": 3}}, {"percentage": 6.41, "rgb": {"blue": 121, "green": 156, "red": 186}}, {"percentage": 2.74, "rgb": {"blue": 221, "green": 201, "red": 209}}, {"percentage": 1.89, "rgb": {"blue": 92, "green": 57, "red": 17}}]}}}}, "profile_banner_url": "https://pbs.twimg.com/profile_banners/1087289365544534016/1602394752", "profile_image_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 64.91, "rgb": {"blue": 207, "green": 218, "red": 229}}, {"percentage": 13.47, "rgb": {"blue": 110, "green": 154, "red": 209}}, {"percentage": 11.48, "rgb": {"blue": 43, "green": 60, "red": 94}}, {"percentage": 5.49, "rgb": {"blue": 90, "green": 119, "red": 168}}, {"percentage": 0.8, "rgb": {"blue": 33, "green": 41, "red": 55}}]}}}}, "profile_image_url_https": "https://pbs.twimg.com/profile_images/1386962724492648449/tvU49FF4_normal.jpg", "profile_interstitial_type": "", "protected": false, "screen_name": "iga_swiatek", "statuses_count": 679, "translator_type": "none", "url": "https://t.co/kwWMhNEokN", "verified": true, "withheld_in_countries": []}, "smart_blocked_by": false, "smart_blocking": false, "super_follow_eligible": false, "super_followed_by": false, "super_following": false, "legacy_extended_profile": {}, "is_profile_translatable": false}}
need_guest_token True
run request RequestDetails(http_method=<HttpMethod.GET: 1>, url='https://twitter.com/i/api/graphql/cYsDlVss-qimNYmNlb6inw/UserByScreenName', headers={'Authorization': 'Bearer AAAAAAAAAAAAAAAAAAAAANRILgAAAAAAnNwIzUejRCOuH5E6I8xnZz4puTs%3D1Zv7ttfk8LF81IUq16cHjhLTvJu4FA33AGWWjCpTnA', 'x-guest-token': '1448607903078920194'}, params={'variables': '{"screen_name": "ProtasiewiczJ", "withSafetyModeUserFields": true, "withSuperFollowsUserFields": true}'}, timeout=20)
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:33.086496+02:00", "raw_value": {"__typename": "User", "id": "VXNlcjo2MjAxODI4NzU=", "rest_id": "620182875", "affiliates_highlighted_label": {}, "legacy": {"created_at": "Wed Jun 27 15:42:43 +0000 2012", "default_profile": true, "default_profile_image": false, "description": "Posel z Wroc\u0142aw; PSL-UED;b.Wiceprzewodnicz\u0105cy PE https://t.co/ndbunIxXbL Partn.Wschodnie/MP for Wroclaw,PL;fmr EuroParl Vice-President dealing w EastPartnership", "entities": {"description": {"urls": [{"display_url": "odp.za", "expanded_url": "http://odp.za", "url": "https://t.co/ndbunIxXbL", "indices": [49, 72]}]}, "url": {"urls": [{"display_url": "jacek-protasiewicz.pl", "expanded_url": "http://jacek-protasiewicz.pl/", "url": "https://t.co/WrpDYFnFfA", "indices": [0, 23]}]}}, "fast_followers_count": 0, "favourites_count": 1780, "followers_count": 24108, "friends_count": 692, "has_custom_timelines": false, "is_translator": false, "listed_count": 194, "location": "", "media_count": 1012, "name": "Jacek Protasiewicz", "normal_followers_count": 24108, "pinned_tweet_ids_str": ["789746720410308608"], "profile_banner_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 51.58, "rgb": {"blue": 29, "green": 23, "red": 19}}, {"percentage": 28.02, "rgb": {"blue": 206, "green": 209, "red": 224}}, {"percentage": 5.98, "rgb": {"blue": 183, "green": 158, "red": 164}}, {"percentage": 3.07, "rgb": {"blue": 79, "green": 76, "red": 133}}, {"percentage": 1.34, "rgb": {"blue": 51, "green": 66, "red": 32}}]}}}}, "profile_banner_url": "https://pbs.twimg.com/profile_banners/620182875/1562084177", "profile_image_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 38.62, "rgb": {"blue": 212, "green": 213, "red": 211}}, {"percentage": 23.4, "rgb": {"blue": 122, "green": 150, "red": 221}}, {"percentage": 16.0, "rgb": {"blue": 39, "green": 40, "red": 49}}, {"percentage": 9.83, "rgb": {"blue": 55, "green": 116, "red": 68}}, {"percentage": 1.64, "rgb": {"blue": 72, "green": 58, "red": 59}}]}}}}, "profile_image_url_https": "https://pbs.twimg.com/profile_images/1173463288723759104/zmngswpE_normal.jpg", "profile_interstitial_type": "", "protected": false, "screen_name": "ProtasiewiczJ", "statuses_count": 12872, "translator_type": "none", "url": "https://t.co/WrpDYFnFfA", "verified": true, "withheld_in_countries": []}, "smart_blocked_by": false, "smart_blocking": false, "super_follow_eligible": false, "super_followed_by": false, "super_following": false, "legacy_extended_profile": {}, "is_profile_translatable": false}}
#####################
### try_user_scrap finish
#####################
#####################
### try_tweet_by_id_scrap start
#####################
is_cursor False last_scrapped_zero True
need_guest_token True
need_guest_token False
run request RequestDetails(http_method=<HttpMethod.POST: 2>, url='https://api.twitter.com/1.1/guest/activate.json', headers={'Authorization': 'Bearer AAAAAAAAAAAAAAAAAAAAANRILgAAAAAAnNwIzUejRCOuH5E6I8xnZz4puTs%3D1Zv7ttfk8LF81IUq16cHjhLTvJu4FA33AGWWjCpTnA'}, params={}, timeout=20)
run request RequestDetails(http_method=<HttpMethod.GET: 1>, url='https://twitter.com/i/api/graphql/kUnCMgMYZCR8GyRZz76IQg/TweetDetail', headers={'Authorization': 'Bearer AAAAAAAAAAAAAAAAAAAAANRILgAAAAAAnNwIzUejRCOuH5E6I8xnZz4puTs%3D1Zv7ttfk8LF81IUq16cHjhLTvJu4FA33AGWWjCpTnA', 'x-guest-token': '1448607906950168577'}, params={'variables': '{"focalTweetId": "1447348840164564994", "with_rux_injections": true, "includePromotedContent": true, "withCommunity": true, "withTweetQuoteCount": true, "withBirdwatchNotes": true, "withSuperFollowsUserFields": true, "withUserResults": true, "withBirdwatchPivots": true, "withReactionsMetadata": true, "withReactionsPerspective": true, "withSuperFollowsTweetFields": true, "withVoice": true}'}, timeout=20)
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:34.329595+02:00", "raw_value": {"__typename": "Tweet", "rest_id": "1447348840164564994", "has_birdwatch_notes": false, "core": {"user_results": {"result": {"__typename": "User", "id": "VXNlcjoxMDg3Mjg5MzY1NTQ0NTM0MDE2", "rest_id": "1087289365544534016", "affiliates_highlighted_label": {}, "legacy": {"created_at": "Mon Jan 21 10:02:40 +0000 2019", "default_profile": true, "default_profile_image": false, "description": "\ud83c\uddf5\ud83c\uddf1 Professional Tennis Player | Trying to put this yellow fluffy thing between the lines.  | #teamSwiatek", "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "igaswiatek.pl", "expanded_url": "http://igaswiatek.pl", "url": "https://t.co/kwWMhNEokN", "indices": [0, 23]}]}}, "fast_followers_count": 0, "favourites_count": 1088, "followers_count": 183746, "friends_count": 31, "has_custom_timelines": true, "is_translator": false, "listed_count": 528, "location": "Warszawa, Polska", "media_count": 356, "name": "Iga \u015awi\u0105tek", "normal_followers_count": 183746, "pinned_tweet_ids_str": [], "profile_banner_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 39.32, "rgb": {"blue": 160, "green": 172, "red": 172}}, {"percentage": 30.72, "rgb": {"blue": 21, "green": 27, "red": 3}}, {"percentage": 6.41, "rgb": {"blue": 121, "green": 156, "red": 186}}, {"percentage": 2.74, "rgb": {"blue": 221, "green": 201, "red": 209}}, {"percentage": 1.89, "rgb": {"blue": 92, "green": 57, "red": 17}}]}}}}, "profile_banner_url": "https://pbs.twimg.com/profile_banners/1087289365544534016/1602394752", "profile_image_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 64.91, "rgb": {"blue": 207, "green": 218, "red": 229}}, {"percentage": 13.47, "rgb": {"blue": 110, "green": 154, "red": 209}}, {"percentage": 11.48, "rgb": {"blue": 43, "green": 60, "red": 94}}, {"percentage": 5.49, "rgb": {"blue": 90, "green": 119, "red": 168}}, {"percentage": 0.8, "rgb": {"blue": 33, "green": 41, "red": 55}}]}}}}, "profile_image_url_https": "https://pbs.twimg.com/profile_images/1386962724492648449/tvU49FF4_normal.jpg", "profile_interstitial_type": "", "protected": false, "screen_name": "iga_swiatek", "statuses_count": 679, "translator_type": "none", "url": "https://t.co/kwWMhNEokN", "verified": true, "withheld_in_countries": []}, "super_follow_eligible": false, "super_followed_by": false, "super_following": false}}}, "legacy": {"created_at": "Sun Oct 10 23:50:28 +0000 2021", "conversation_id_str": "1447348840164564994", "display_text_range": [0, 163], "entities": {"media": [{"display_url": "pic.twitter.com/6zkElbdaoB", "expanded_url": "https://twitter.com/iga_swiatek/status/1447348840164564994/photo/1", "id_str": "1447348831352283140", "indices": [164, 187], "media_url_https": "https://pbs.twimg.com/media/FBYEF_7UYAQpVFx.jpg", "type": "photo", "url": "https://t.co/6zkElbdaoB", "features": {"all": {"tags": [{"user_id": "17158140", "name": "wta", "screen_name": "WTA", "type": "user"}, {"user_id": "1252575285293260800", "name": "Xiaomi Polska", "screen_name": "XiaomiPL", "type": "user"}, {"user_id": "603617274", "name": "Grupa PZU", "screen_name": "GrupaPZU", "type": "user"}, {"user_id": "3111250452", "name": "ASICS Tennis", "screen_name": "ASICSTennis", "type": "user"}, {"user_id": "30017071", "name": "BNP Paribas Open", "screen_name": "BNPPARIBASOPEN", "type": "user"}, {"user_id": "64391043", "name": "Tecnifibre", "screen_name": "tecnifibre", "type": "user"}]}, "large": {"faces": [{"x": 558, "y": 484, "h": 65, "w": 65}]}, "medium": {"faces": [{"x": 558, "y": 484, "h": 65, "w": 65}]}, "small": {"faces": [{"x": 334, "y": 289, "h": 38, "w": 38}]}, "orig": {"faces": [{"x": 558, "y": 484, "h": 65, "w": 65}]}}, "sizes": {"large": {"h": 661, "w": 1136, "resize": "fit"}, "medium": {"h": 661, "w": 1136, "resize": "fit"}, "small": {"h": 396, "w": 680, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "original_info": {"height": 661, "width": 1136, "focus_rects": [{"x": 0, "y": 0, "w": 1136, "h": 636}, {"x": 266, "y": 0, "w": 661, "h": 661}, {"x": 306, "y": 0, "w": 580, "h": 661}, {"x": 431, "y": 0, "w": 331, "h": 661}, {"x": 0, "y": 0, "w": 1136, "h": 661}]}}, {"display_url": "pic.twitter.com/6zkElbdaoB", "expanded_url": "https://twitter.com/iga_swiatek/status/1447348840164564994/photo/1", "id_str": "1447348834393153538", "indices": [164, 187], "media_url_https": "https://pbs.twimg.com/media/FBYEGLQUYAInts5.jpg", "type": "photo", "url": "https://t.co/6zkElbdaoB", "features": {"all": {"tags": [{"user_id": "17158140", "name": "wta", "screen_name": "WTA", "type": "user"}, {"user_id": "1252575285293260800", "name": "Xiaomi Polska", "screen_name": "XiaomiPL", "type": "user"}, {"user_id": "603617274", "name": "Grupa PZU", "screen_name": "GrupaPZU", "type": "user"}, {"user_id": "3111250452", "name": "ASICS Tennis", "screen_name": "ASICSTennis", "type": "user"}, {"user_id": "30017071", "name": "BNP Paribas Open", "screen_name": "BNPPARIBASOPEN", "type": "user"}, {"user_id": "64391043", "name": "Tecnifibre", "screen_name": "tecnifibre", "type": "user"}]}, "large": {"faces": [{"x": 27, "y": 1083, "h": 269, "w": 269}]}, "medium": {"faces": [{"x": 16, "y": 634, "h": 158, "w": 158}]}, "small": {"faces": [{"x": 9, "y": 359, "h": 89, "w": 89}]}, "orig": {"faces": [{"x": 28, "y": 1088, "h": 271, "w": 271}]}}, "sizes": {"large": {"h": 2048, "w": 1434, "resize": "fit"}, "medium": {"h": 1200, "w": 840, "resize": "fit"}, "small": {"h": 680, "w": 476, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "original_info": {"height": 2057, "width": 1440, "focus_rects": [{"x": 0, "y": 882, "w": 1440, "h": 806}, {"x": 0, "y": 565, "w": 1440, "h": 1440}, {"x": 0, "y": 415, "w": 1440, "h": 1642}, {"x": 0, "y": 0, "w": 1029, "h": 2057}, {"x": 0, "y": 0, "w": 1440, "h": 2057}]}}, {"display_url": "pic.twitter.com/6zkElbdaoB", "expanded_url": "https://twitter.com/iga_swiatek/status/1447348840164564994/photo/1", "id_str": "1447348838025494537", "indices": [164, 187], "media_url_https": "https://pbs.twimg.com/media/FBYEGYyVgAk1iz5.jpg", "type": "photo", "url": "https://t.co/6zkElbdaoB", "features": {"all": {"tags": [{"user_id": "17158140", "name": "wta", "screen_name": "WTA", "type": "user"}, {"user_id": "1252575285293260800", "name": "Xiaomi Polska", "screen_name": "XiaomiPL", "type": "user"}, {"user_id": "603617274", "name": "Grupa PZU", "screen_name": "GrupaPZU", "type": "user"}, {"user_id": "3111250452", "name": "ASICS Tennis", "screen_name": "ASICSTennis", "type": "user"}, {"user_id": "30017071", "name": "BNP Paribas Open", "screen_name": "BNPPARIBASOPEN", "type": "user"}, {"user_id": "64391043", "name": "Tecnifibre", "screen_name": "tecnifibre", "type": "user"}]}, "large": {"faces": []}, "medium": {"faces": []}, "small": {"faces": []}, "orig": {"faces": []}}, "sizes": {"large": {"h": 2048, "w": 1328, "resize": "fit"}, "medium": {"h": 1200, "w": 778, "resize": "fit"}, "small": {"h": 680, "w": 441, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "original_info": {"height": 2220, "width": 1440, "focus_rects": [{"x": 0, "y": 1313, "w": 1440, "h": 806}, {"x": 0, "y": 780, "w": 1440, "h": 1440}, {"x": 0, "y": 578, "w": 1440, "h": 1642}, {"x": 0, "y": 0, "w": 1110, "h": 2220}, {"x": 0, "y": 0, "w": 1440, "h": 2220}]}}], "user_mentions": [], "urls": [], "hashtags": [{"indices": [142, 163], "text": "WorldMentalHealthDay"}], "symbols": []}, "extended_entities": {"media": [{"display_url": "pic.twitter.com/6zkElbdaoB", "expanded_url": "https://twitter.com/iga_swiatek/status/1447348840164564994/photo/1", "id_str": "1447348831352283140", "indices": [164, 187], "media_key": "3_1447348831352283140", "media_url_https": "https://pbs.twimg.com/media/FBYEF_7UYAQpVFx.jpg", "type": "photo", "url": "https://t.co/6zkElbdaoB", "ext_media_color": {"palette": [{"percentage": 23.45, "rgb": {"blue": 42, "green": 46, "red": 24}}, {"percentage": 22.58, "rgb": {"blue": 194, "green": 201, "red": 198}}, {"percentage": 20.04, "rgb": {"blue": 132, "green": 141, "red": 98}}, {"percentage": 13.05, "rgb": {"blue": 54, "green": 76, "red": 109}}, {"percentage": 7.41, "rgb": {"blue": 115, "green": 59, "red": 45}}]}, "ext_media_availability": {"status": "Available"}, "features": {"all": {"tags": [{"user_id": "17158140", "name": "wta", "screen_name": "WTA", "type": "user"}, {"user_id": "1252575285293260800", "name": "Xiaomi Polska", "screen_name": "XiaomiPL", "type": "user"}, {"user_id": "603617274", "name": "Grupa PZU", "screen_name": "GrupaPZU", "type": "user"}, {"user_id": "3111250452", "name": "ASICS Tennis", "screen_name": "ASICSTennis", "type": "user"}, {"user_id": "30017071", "name": "BNP Paribas Open", "screen_name": "BNPPARIBASOPEN", "type": "user"}, {"user_id": "64391043", "name": "Tecnifibre", "screen_name": "tecnifibre", "type": "user"}]}, "large": {"faces": [{"x": 558, "y": 484, "h": 65, "w": 65}]}, "medium": {"faces": [{"x": 558, "y": 484, "h": 65, "w": 65}]}, "small": {"faces": [{"x": 334, "y": 289, "h": 38, "w": 38}]}, "orig": {"faces": [{"x": 558, "y": 484, "h": 65, "w": 65}]}}, "sizes": {"large": {"h": 661, "w": 1136, "resize": "fit"}, "medium": {"h": 661, "w": 1136, "resize": "fit"}, "small": {"h": 396, "w": 680, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "original_info": {"height": 661, "width": 1136, "focus_rects": [{"x": 0, "y": 0, "w": 1136, "h": 636}, {"x": 266, "y": 0, "w": 661, "h": 661}, {"x": 306, "y": 0, "w": 580, "h": 661}, {"x": 431, "y": 0, "w": 331, "h": 661}, {"x": 0, "y": 0, "w": 1136, "h": 661}]}}, {"display_url": "pic.twitter.com/6zkElbdaoB", "expanded_url": "https://twitter.com/iga_swiatek/status/1447348840164564994/photo/1", "id_str": "1447348834393153538", "indices": [164, 187], "media_key": "3_1447348834393153538", "media_url_https": "https://pbs.twimg.com/media/FBYEGLQUYAInts5.jpg", "type": "photo", "url": "https://t.co/6zkElbdaoB", "ext_media_color": {"palette": [{"percentage": 98.68, "rgb": {"blue": 255, "green": 255, "red": 255}}, {"percentage": 1.28, "rgb": {"blue": 140, "green": 140, "red": 140}}]}, "ext_media_availability": {"status": "Available"}, "features": {"all": {"tags": [{"user_id": "17158140", "name": "wta", "screen_name": "WTA", "type": "user"}, {"user_id": "1252575285293260800", "name": "Xiaomi Polska", "screen_name": "XiaomiPL", "type": "user"}, {"user_id": "603617274", "name": "Grupa PZU", "screen_name": "GrupaPZU", "type": "user"}, {"user_id": "3111250452", "name": "ASICS Tennis", "screen_name": "ASICSTennis", "type": "user"}, {"user_id": "30017071", "name": "BNP Paribas Open", "screen_name": "BNPPARIBASOPEN", "type": "user"}, {"user_id": "64391043", "name": "Tecnifibre", "screen_name": "tecnifibre", "type": "user"}]}, "large": {"faces": [{"x": 27, "y": 1083, "h": 269, "w": 269}]}, "medium": {"faces": [{"x": 16, "y": 634, "h": 158, "w": 158}]}, "small": {"faces": [{"x": 9, "y": 359, "h": 89, "w": 89}]}, "orig": {"faces": [{"x": 28, "y": 1088, "h": 271, "w": 271}]}}, "sizes": {"large": {"h": 2048, "w": 1434, "resize": "fit"}, "medium": {"h": 1200, "w": 840, "resize": "fit"}, "small": {"h": 680, "w": 476, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "original_info": {"height": 2057, "width": 1440, "focus_rects": [{"x": 0, "y": 882, "w": 1440, "h": 806}, {"x": 0, "y": 565, "w": 1440, "h": 1440}, {"x": 0, "y": 415, "w": 1440, "h": 1642}, {"x": 0, "y": 0, "w": 1029, "h": 2057}, {"x": 0, "y": 0, "w": 1440, "h": 2057}]}}, {"display_url": "pic.twitter.com/6zkElbdaoB", "expanded_url": "https://twitter.com/iga_swiatek/status/1447348840164564994/photo/1", "id_str": "1447348838025494537", "indices": [164, 187], "media_key": "3_1447348838025494537", "media_url_https": "https://pbs.twimg.com/media/FBYEGYyVgAk1iz5.jpg", "type": "photo", "url": "https://t.co/6zkElbdaoB", "ext_media_color": {"palette": [{"percentage": 99.26, "rgb": {"blue": 255, "green": 255, "red": 255}}, {"percentage": 0.72, "rgb": {"blue": 142, "green": 142, "red": 142}}]}, "ext_media_availability": {"status": "Available"}, "features": {"all": {"tags": [{"user_id": "17158140", "name": "wta", "screen_name": "WTA", "type": "user"}, {"user_id": "1252575285293260800", "name": "Xiaomi Polska", "screen_name": "XiaomiPL", "type": "user"}, {"user_id": "603617274", "name": "Grupa PZU", "screen_name": "GrupaPZU", "type": "user"}, {"user_id": "3111250452", "name": "ASICS Tennis", "screen_name": "ASICSTennis", "type": "user"}, {"user_id": "30017071", "name": "BNP Paribas Open", "screen_name": "BNPPARIBASOPEN", "type": "user"}, {"user_id": "64391043", "name": "Tecnifibre", "screen_name": "tecnifibre", "type": "user"}]}, "large": {"faces": []}, "medium": {"faces": []}, "small": {"faces": []}, "orig": {"faces": []}}, "sizes": {"large": {"h": 2048, "w": 1328, "resize": "fit"}, "medium": {"h": 1200, "w": 778, "resize": "fit"}, "small": {"h": 680, "w": 441, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "original_info": {"height": 2220, "width": 1440, "focus_rects": [{"x": 0, "y": 1313, "w": 1440, "h": 806}, {"x": 0, "y": 780, "w": 1440, "h": 1440}, {"x": 0, "y": 578, "w": 1440, "h": 1642}, {"x": 0, "y": 0, "w": 1110, "h": 2220}, {"x": 0, "y": 0, "w": 1440, "h": 2220}]}}]}, "favorite_count": 7318, "favorited": false, "full_text": "\ud83e\udde0Not an usual post-match post. Here's something I want to share with you.\n\n\ud83e\udde0Nie jest to zwyk\u0142y pomeczowy post. Chcia\u0142abym Wam co\u015b przekaza\u0107.\n\n#WorldMentalHealthDay https://t.co/6zkElbdaoB", "is_quote_status": false, "lang": "pl", "possibly_sensitive": false, "possibly_sensitive_editable": true, "quote_count": 133, "reply_count": 242, "retweet_count": 732, "retweeted": false, "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "user_id_str": "1087289365544534016", "id_str": "1447348840164564994"}}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:34.329794+02:00", "raw_value": {"__typename": "Tweet", "rest_id": "1447349104468807681", "has_birdwatch_notes": false, "core": {"user_results": {"result": {"__typename": "User", "id": "VXNlcjoxMzcwNDkwNTUyNDU4ODA5MzQ3", "rest_id": "1370490552458809347", "affiliates_highlighted_label": {}, "legacy": {"created_at": "Fri Mar 12 21:43:18 +0000 2021", "default_profile": true, "default_profile_image": false, "description": "hej igunia to najlepsza idolka pzdr", "entities": {"description": {"urls": []}}, "fast_followers_count": 0, "favourites_count": 11593, "followers_count": 67, "friends_count": 127, "has_custom_timelines": false, "is_translator": false, "listed_count": 0, "location": "", "media_count": 84, "name": "amelusia", "normal_followers_count": 67, "pinned_tweet_ids_str": [], "profile_banner_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 97.42, "rgb": {"blue": 56, "green": 93, "red": 89}}, {"percentage": 1.73, "rgb": {"blue": 168, "green": 182, "red": 182}}, {"percentage": 0.33, "rgb": {"blue": 74, "green": 102, "red": 130}}, {"percentage": 0.24, "rgb": {"blue": 122, "green": 118, "red": 121}}, {"percentage": 0.15, "rgb": {"blue": 32, "green": 55, "red": 52}}]}}}}, "profile_banner_url": "https://pbs.twimg.com/profile_banners/1370490552458809347/1625407155", "profile_image_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 66.08, "rgb": {"blue": 136, "green": 147, "red": 154}}, {"percentage": 15.08, "rgb": {"blue": 29, "green": 38, "red": 50}}, {"percentage": 2.12, "rgb": {"blue": 70, "green": 93, "red": 133}}, {"percentage": 1.77, "rgb": {"blue": 244, "green": 239, "red": 242}}, {"percentage": 1.61, "rgb": {"blue": 144, "green": 172, "red": 220}}]}}}}, "profile_image_url_https": "https://pbs.twimg.com/profile_images/1447319962952028160/aQg0GMBs_normal.jpg", "profile_interstitial_type": "", "protected": false, "screen_name": "amisiulek", "statuses_count": 1640, "translator_type": "none", "verified": false, "withheld_in_countries": []}, "super_follow_eligible": false, "super_followed_by": false, "super_following": false}}}, "legacy": {"created_at": "Sun Oct 10 23:51:31 +0000 2021", "conversation_id_str": "1447348840164564994", "display_text_range": [79, 161], "entities": {"user_mentions": [{"id_str": "1087289365544534016", "name": "Iga \u015awi\u0105tek", "screen_name": "iga_swiatek", "indices": [0, 12]}, {"id_str": "17158140", "name": "wta", "screen_name": "WTA", "indices": [13, 17]}, {"id_str": "1252575285293260800", "name": "Xiaomi Polska", "screen_name": "XiaomiPL", "indices": [18, 27]}, {"id_str": "603617274", "name": "Grupa PZU", "screen_name": "GrupaPZU", "indices": [28, 37]}, {"id_str": "3111250452", "name": "ASICS Tennis", "screen_name": "ASICSTennis", "indices": [38, 50]}, {"id_str": "30017071", "name": "BNP Paribas Open", "screen_name": "BNPPARIBASOPEN", "indices": [51, 66]}, {"id_str": "64391043", "name": "Tecnifibre", "screen_name": "tecnifibre", "indices": [67, 78]}], "urls": [], "hashtags": [], "symbols": []}, "favorite_count": 12, "favorited": false, "full_text": "@iga_swiatek @WTA @XiaomiPL @GrupaPZU @ASICSTennis @BNPPARIBASOPEN @tecnifibre iga cudownie ci\u0119 mie\u0107, po prostu dzi\u0119kuje ze jeste\u015b&lt;3 trzymam kciuki za ciebie!", "in_reply_to_screen_name": "iga_swiatek", "in_reply_to_status_id_str": "1447348840164564994", "in_reply_to_user_id_str": "1087289365544534016", "is_quote_status": false, "lang": "pl", "quote_count": 0, "reply_count": 0, "retweet_count": 0, "retweeted": false, "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "user_id_str": "1370490552458809347", "id_str": "1447349104468807681"}}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:34.329942+02:00", "raw_value": {"__typename": "Tweet", "rest_id": "1447349544124100614", "has_birdwatch_notes": false, "core": {"user_results": {"result": {"__typename": "User", "id": "VXNlcjoyNTc3Mjk2MTM0", "rest_id": "2577296134", "affiliates_highlighted_label": {}, "legacy": {"created_at": "Mon Jun 02 11:40:07 +0000 2014", "default_profile": true, "default_profile_image": false, "description": "Football \u2764\ufe0f\u2764\ufe0f", "entities": {"description": {"urls": []}}, "fast_followers_count": 0, "favourites_count": 50202, "followers_count": 375, "friends_count": 171, "has_custom_timelines": true, "is_translator": false, "listed_count": 1, "location": "", "media_count": 1514, "name": "Hamza \ud83d\udc3c", "normal_followers_count": 375, "pinned_tweet_ids_str": ["1063442214121078786"], "profile_banner_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 61.95, "rgb": {"blue": 94, "green": 91, "red": 92}}, {"percentage": 21.64, "rgb": {"blue": 154, "green": 154, "red": 151}}, {"percentage": 5.31, "rgb": {"blue": 45, "green": 43, "red": 217}}, {"percentage": 4.36, "rgb": {"blue": 72, "green": 70, "red": 165}}, {"percentage": 0.62, "rgb": {"blue": 42, "green": 42, "red": 248}}]}}}}, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2577296134/1608911444", "profile_image_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 63.89, "rgb": {"blue": 12, "green": 12, "red": 12}}, {"percentage": 17.46, "rgb": {"blue": 131, "green": 149, "red": 182}}, {"percentage": 11.04, "rgb": {"blue": 63, "green": 84, "red": 112}}, {"percentage": 6.67, "rgb": {"blue": 40, "green": 32, "red": 208}}, {"percentage": 0.74, "rgb": {"blue": 52, "green": 59, "red": 157}}]}}}}, "profile_image_url_https": "https://pbs.twimg.com/profile_images/1431253315698970627/_QSeR-Nf_normal.jpg", "profile_interstitial_type": "", "protected": false, "screen_name": "UTDHaMzA21", "statuses_count": 24573, "translator_type": "none", "verified": false, "withheld_in_countries": []}, "super_follow_eligible": false, "super_followed_by": false, "super_following": false}}}, "legacy": {"created_at": "Sun Oct 10 23:53:16 +0000 2021", "conversation_id_str": "1447348840164564994", "display_text_range": [79, 167], "entities": {"user_mentions": [{"id_str": "1087289365544534016", "name": "Iga \u015awi\u0105tek", "screen_name": "iga_swiatek", "indices": [0, 12]}, {"id_str": "17158140", "name": "wta", "screen_name": "WTA", "indices": [13, 17]}, {"id_str": "1252575285293260800", "name": "Xiaomi Polska", "screen_name": "XiaomiPL", "indices": [18, 27]}, {"id_str": "603617274", "name": "Grupa PZU", "screen_name": "GrupaPZU", "indices": [28, 37]}, {"id_str": "3111250452", "name": "ASICS Tennis", "screen_name": "ASICSTennis", "indices": [38, 50]}, {"id_str": "30017071", "name": "BNP Paribas Open", "screen_name": "BNPPARIBASOPEN", "indices": [51, 66]}, {"id_str": "64391043", "name": "Tecnifibre", "screen_name": "tecnifibre", "indices": [67, 78]}], "urls": [], "hashtags": [], "symbols": []}, "favorite_count": 43, "favorited": false, "full_text": "@iga_swiatek @WTA @XiaomiPL @GrupaPZU @ASICSTennis @BNPPARIBASOPEN @tecnifibre ilost words of how good a person and a tennis player you are nothing but big respect \ud83d\ude4f\u2764\ufe0f", "in_reply_to_screen_name": "iga_swiatek", "in_reply_to_status_id_str": "1447348840164564994", "in_reply_to_user_id_str": "1087289365544534016", "is_quote_status": false, "lang": "en", "quote_count": 0, "reply_count": 0, "retweet_count": 0, "retweeted": false, "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "user_id_str": "2577296134", "id_str": "1447349544124100614"}}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:34.330082+02:00", "raw_value": {"__typename": "Tweet", "rest_id": "1447349582392877060", "has_birdwatch_notes": false, "core": {"user_results": {"result": {"__typename": "User", "id": "VXNlcjoxNDM0NTk3MzE4NTgyNTM4MjQy", "rest_id": "1434597318582538242", "affiliates_highlighted_label": {}, "legacy": {"created_at": "Sun Sep 05 19:20:40 +0000 2021", "default_profile": true, "default_profile_image": false, "description": "", "entities": {"description": {"urls": []}}, "fast_followers_count": 0, "favourites_count": 135, "followers_count": 10, "friends_count": 204, "has_custom_timelines": false, "is_translator": false, "listed_count": 0, "location": "", "media_count": 28, "name": "TennisIsAwesome", "normal_followers_count": 10, "pinned_tweet_ids_str": ["1437191385321463812"], "profile_banner_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 42.81, "rgb": {"blue": 48, "green": 130, "red": 170}}, {"percentage": 18.22, "rgb": {"blue": 154, "green": 188, "red": 246}}, {"percentage": 9.05, "rgb": {"blue": 48, "green": 54, "red": 62}}, {"percentage": 6.92, "rgb": {"blue": 183, "green": 183, "red": 184}}, {"percentage": 4.61, "rgb": {"blue": 91, "green": 137, "red": 221}}]}}}}, "profile_banner_url": "https://pbs.twimg.com/profile_banners/1434597318582538242/1631563132", "profile_image_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 33.02, "rgb": {"blue": 62, "green": 41, "red": 40}}, {"percentage": 13.61, "rgb": {"blue": 33, "green": 30, "red": 109}}, {"percentage": 13.13, "rgb": {"blue": 121, "green": 146, "red": 187}}, {"percentage": 12.55, "rgb": {"blue": 42, "green": 48, "red": 65}}, {"percentage": 4.47, "rgb": {"blue": 56, "green": 73, "red": 10}}]}}}}, "profile_image_url_https": "https://pbs.twimg.com/profile_images/1435707155299057673/eEqLUgLZ_normal.jpg", "profile_interstitial_type": "", "protected": false, "screen_name": "TennisIsAwesom3", "statuses_count": 240, "translator_type": "none", "verified": false, "withheld_in_countries": []}, "super_follow_eligible": false, "super_followed_by": false, "super_following": false}}}, "legacy": {"created_at": "Sun Oct 10 23:53:25 +0000 2021", "conversation_id_str": "1447348840164564994", "display_text_range": [79, 133], "entities": {"user_mentions": [{"id_str": "1087289365544534016", "name": "Iga \u015awi\u0105tek", "screen_name": "iga_swiatek", "indices": [0, 12]}, {"id_str": "17158140", "name": "wta", "screen_name": "WTA", "indices": [13, 17]}, {"id_str": "1252575285293260800", "name": "Xiaomi Polska", "screen_name": "XiaomiPL", "indices": [18, 27]}, {"id_str": "603617274", "name": "Grupa PZU", "screen_name": "GrupaPZU", "indices": [28, 37]}, {"id_str": "3111250452", "name": "ASICS Tennis", "screen_name": "ASICSTennis", "indices": [38, 50]}, {"id_str": "30017071", "name": "BNP Paribas Open", "screen_name": "BNPPARIBASOPEN", "indices": [51, 66]}, {"id_str": "64391043", "name": "Tecnifibre", "screen_name": "tecnifibre", "indices": [67, 78]}], "urls": [], "hashtags": [], "symbols": []}, "favorite_count": 4, "favorited": false, "full_text": "@iga_swiatek @WTA @XiaomiPL @GrupaPZU @ASICSTennis @BNPPARIBASOPEN @tecnifibre beautiful gesture \ud83d\ude4f\ud83d\ude4f and congrats on the great win \ud83c\udf89\ud83c\udf89\ud83d\ude0e", "in_reply_to_screen_name": "iga_swiatek", "in_reply_to_status_id_str": "1447348840164564994", "in_reply_to_user_id_str": "1087289365544534016", "is_quote_status": false, "lang": "en", "quote_count": 0, "reply_count": 0, "retweet_count": 0, "retweeted": false, "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "user_id_str": "1434597318582538242", "id_str": "1447349582392877060"}}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:34.330290+02:00", "raw_value": {"__typename": "Tweet", "rest_id": "1448343402186256390", "has_birdwatch_notes": false, "core": {"user_results": {"result": {"__typename": "User", "id": "VXNlcjoxMzk5NTAyNTIyMjE0MjM2MTYw", "rest_id": "1399502522214236160", "affiliates_highlighted_label": {}, "legacy": {"created_at": "Mon May 31 23:07:34 +0000 2021", "default_profile": true, "default_profile_image": false, "description": "Prezes Polskiego Zwi\u0105zku Pi\u0142ki No\u017cnej\nhttps://t.co/gYRGRYJIZO", "entities": {"description": {"urls": [{"display_url": "pzpn.pl", "expanded_url": "http://www.pzpn.pl", "url": "https://t.co/gYRGRYJIZO", "indices": [38, 61]}]}}, "fast_followers_count": 0, "favourites_count": 0, "followers_count": 30053, "friends_count": 12, "has_custom_timelines": false, "is_translator": false, "listed_count": 22, "location": "", "media_count": 21, "name": "Cezary Kulesza", "normal_followers_count": 30053, "pinned_tweet_ids_str": [], "profile_banner_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 31.83, "rgb": {"blue": 20, "green": 20, "red": 39}}, {"percentage": 20.6, "rgb": {"blue": 36, "green": 156, "red": 91}}, {"percentage": 13.12, "rgb": {"blue": 250, "green": 252, "red": 251}}, {"percentage": 5.43, "rgb": {"blue": 103, "green": 93, "red": 253}}, {"percentage": 4.22, "rgb": {"blue": 23, "green": 23, "red": 71}}]}}}}, "profile_banner_url": "https://pbs.twimg.com/profile_banners/1399502522214236160/1622649288", "profile_image_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 28.34, "rgb": {"blue": 45, "green": 43, "red": 42}}, {"percentage": 24.75, "rgb": {"blue": 85, "green": 112, "red": 139}}, {"percentage": 24.65, "rgb": {"blue": 226, "green": 182, "red": 154}}, {"percentage": 8.01, "rgb": {"blue": 187, "green": 185, "red": 179}}, {"percentage": 3.58, "rgb": {"blue": 31, "green": 46, "red": 63}}]}}}}, "profile_image_url_https": "https://pbs.twimg.com/profile_images/1400118147089326080/M41zbWk-_normal.jpg", "profile_interstitial_type": "", "protected": false, "screen_name": "Czarek_Kulesza", "statuses_count": 59, "translator_type": "none", "verified": false, "withheld_in_countries": []}, "super_follow_eligible": false, "super_followed_by": false, "super_following": false}}}, "legacy": {"created_at": "Wed Oct 13 17:42:30 +0000 2021", "conversation_id_str": "1448343402186256390", "display_text_range": [0, 116], "entities": {"media": [{"display_url": "pic.twitter.com/dUXMgHLcvl", "expanded_url": "https://twitter.com/Czarek_Kulesza/status/1448343402186256390/video/1", "id_str": "1448343339410104332", "indices": [117, 140], "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/1448343339410104332/pu/img/P-Acg5BWOQLfNLbC.jpg", "type": "photo", "url": "https://t.co/dUXMgHLcvl", "features": {}, "sizes": {"large": {"h": 288, "w": 352, "resize": "fit"}, "medium": {"h": 288, "w": 352, "resize": "fit"}, "small": {"h": 288, "w": 352, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "original_info": {"height": 288, "width": 352}}], "user_mentions": [], "urls": [], "hashtags": [], "symbols": []}, "extended_entities": {"media": [{"display_url": "pic.twitter.com/dUXMgHLcvl", "expanded_url": "https://twitter.com/Czarek_Kulesza/status/1448343402186256390/video/1", "id_str": "1448343339410104332", "indices": [117, 140], "media_key": "7_1448343339410104332", "media_url_https": "https://pbs.twimg.com/ext_tw_video_thumb/1448343339410104332/pu/img/P-Acg5BWOQLfNLbC.jpg", "type": "video", "url": "https://t.co/dUXMgHLcvl", "additional_media_info": {"monetizable": false}, "ext_media_color": {"palette": [{"percentage": 65.65, "rgb": {"blue": 2, "green": 1, "red": 3}}, {"percentage": 14.66, "rgb": {"blue": 25, "green": 33, "red": 122}}, {"percentage": 9.04, "rgb": {"blue": 112, "green": 115, "red": 119}}, {"percentage": 4.78, "rgb": {"blue": 176, "green": 180, "red": 179}}, {"percentage": 1.0, "rgb": {"blue": 27, "green": 36, "red": 139}}]}, "mediaStats": {"viewCount": 143960}, "ext_media_availability": {"status": "Available"}, "features": {}, "sizes": {"large": {"h": 288, "w": 352, "resize": "fit"}, "medium": {"h": 288, "w": 352, "resize": "fit"}, "small": {"h": 288, "w": 352, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "original_info": {"height": 288, "width": 352}, "video_info": {"aspect_ratio": [11, 9], "duration_millis": 40192, "variants": [{"content_type": "application/x-mpegURL", "url": "https://video.twimg.com/ext_tw_video/1448343339410104332/pu/pl/Xi8MHdu1ZTEA2-BW.m3u8?tag=12&container=fmp4"}, {"bitrate": 832000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/1448343339410104332/pu/vid/352x288/tyPI3amYgIHFD5z5.mp4?tag=12"}, {"bitrate": 256000, "content_type": "video/mp4", "url": "https://video.twimg.com/ext_tw_video/1448343339410104332/pu/vid/330x270/8nnrpeLWgYyDtMdK.mp4?tag=12"}]}}]}, "favorite_count": 5997, "favorited": false, "full_text": "Po meczu w Tiranie emocje by\u0142y niesamowite. Przepraszam, ale inaczej nie da\u0142o si\u0119 ich wyrazi\u0107 [materia\u0142 bez cenzury] https://t.co/dUXMgHLcvl", "is_quote_status": false, "lang": "pl", "possibly_sensitive": false, "possibly_sensitive_editable": true, "place": {"attributes": {}, "bounding_box": {"coordinates": [[[20.8525518, 52.0977088], [20.8525518, 52.3679617], [21.2710282, 52.3679617], [21.2710282, 52.0977088]]], "type": "Polygon"}, "contained_within": [], "country": "Polska", "country_code": "PL", "full_name": "Warszawa, Polska", "name": "Warszawa", "id": "535f0c2de0121451", "place_type": "city", "url": "https://api.twitter.com/1.1/geo/id/535f0c2de0121451.json"}, "quote_count": 120, "reply_count": 253, "retweet_count": 318, "retweeted": false, "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "user_id_str": "1399502522214236160", "id_str": "1448343402186256390"}}}
is_cursor True last_scrapped_zero False
need_guest_token True
run request RequestDetails(http_method=<HttpMethod.GET: 1>, url='https://twitter.com/i/api/graphql/kUnCMgMYZCR8GyRZz76IQg/TweetDetail', headers={'Authorization': 'Bearer AAAAAAAAAAAAAAAAAAAAANRILgAAAAAAnNwIzUejRCOuH5E6I8xnZz4puTs%3D1Zv7ttfk8LF81IUq16cHjhLTvJu4FA33AGWWjCpTnA', 'x-guest-token': '1448607906950168577'}, params={'variables': '{"focalTweetId": "1447348840164564994", "with_rux_injections": true, "includePromotedContent": true, "withCommunity": true, "withTweetQuoteCount": true, "withBirdwatchNotes": true, "withSuperFollowsUserFields": true, "withUserResults": true, "withBirdwatchPivots": true, "withReactionsMetadata": true, "withReactionsPerspective": true, "withSuperFollowsTweetFields": true, "withVoice": true, "cursor": "JQAAAPAWHBk2gsC-3fKVgpYojMC5tb6vgpYoiICzxduxgpYoJQISFQ4AAA"}'}, timeout=20)
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:34.931789+02:00", "raw_value": {"__typename": "Tweet", "rest_id": "1447349029159985152", "has_birdwatch_notes": false, "core": {"user_results": {"result": {"__typename": "User", "id": "VXNlcjoyMjI1NjcyMDE3", "rest_id": "2225672017", "affiliates_highlighted_label": {}, "legacy": {"created_at": "Sun Dec 01 22:21:34 +0000 2013", "default_profile": true, "default_profile_image": false, "description": "Philosopher by edu.& WOL; INTP, 5w4; Humanist; Musician; Liberal;\u26d4Trump; PIS-Poland's shame; Lewy & Iga \u015awi\u0105tek, i.a., its pride. \ud83c\udfbb\ud83d\udcda\ud83d\udeb4\u200d\u2642\ufe0f\ud83d\udd2d\ud83d\udc15\ud83d\udc08Positive\ud83d\ude4b\u200d\u2642\ufe0f\u270c\ufe0f", "entities": {"description": {"urls": []}}, "fast_followers_count": 0, "favourites_count": 9121, "followers_count": 1008, "friends_count": 1006, "has_custom_timelines": true, "is_translator": false, "listed_count": 0, "location": "Toronto; \u0141\u00f3d\u017a", "media_count": 53, "name": "Dariusz\u2764\ufe0f\ud83c\udf0e\ud83c\udde8\ud83c\udde6\ud83c\uddea\ud83c\uddfa\ud83c\uddf5\ud83c\uddf1 \ud83d\udc96Jazz #SilniRazem \ud83d\ude0e \u270c\ufe0f\ud83e\udd1f", "normal_followers_count": 1008, "pinned_tweet_ids_str": ["1390697385202962434"], "profile_banner_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 90.82, "rgb": {"blue": 44, "green": 42, "red": 32}}, {"percentage": 5.16, "rgb": {"blue": 59, "green": 74, "red": 97}}, {"percentage": 3.8, "rgb": {"blue": 106, "green": 100, "red": 114}}, {"percentage": 0.13, "rgb": {"blue": 87, "green": 122, "red": 176}}]}}}}, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2225672017/1621441107", "profile_image_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 42.0, "rgb": {"blue": 37, "green": 38, "red": 41}}, {"percentage": 31.68, "rgb": {"blue": 57, "green": 86, "red": 118}}, {"percentage": 10.02, "rgb": {"blue": 79, "green": 95, "red": 129}}, {"percentage": 6.65, "rgb": {"blue": 51, "green": 95, "red": 101}}, {"percentage": 3.87, "rgb": {"blue": 57, "green": 74, "red": 130}}]}}}}, "profile_image_url_https": "https://pbs.twimg.com/profile_images/567422419149676544/upGQRC0F_normal.jpeg", "profile_interstitial_type": "", "protected": false, "screen_name": "_dariusz__", "statuses_count": 6128, "translator_type": "none", "verified": false, "withheld_in_countries": []}, "super_follow_eligible": false, "super_followed_by": false, "super_following": false}}}, "legacy": {"created_at": "Sun Oct 10 23:51:13 +0000 2021", "conversation_id_str": "1447348840164564994", "display_text_range": [79, 82], "entities": {"user_mentions": [{"id_str": "1087289365544534016", "name": "Iga \u015awi\u0105tek", "screen_name": "iga_swiatek", "indices": [0, 12]}, {"id_str": "17158140", "name": "wta", "screen_name": "WTA", "indices": [13, 17]}, {"id_str": "1252575285293260800", "name": "Xiaomi Polska", "screen_name": "XiaomiPL", "indices": [18, 27]}, {"id_str": "603617274", "name": "Grupa PZU", "screen_name": "GrupaPZU", "indices": [28, 37]}, {"id_str": "3111250452", "name": "ASICS Tennis", "screen_name": "ASICSTennis", "indices": [38, 50]}, {"id_str": "30017071", "name": "BNP Paribas Open", "screen_name": "BNPPARIBASOPEN", "indices": [51, 66]}, {"id_str": "64391043", "name": "Tecnifibre", "screen_name": "tecnifibre", "indices": [67, 78]}], "urls": [], "hashtags": [], "symbols": []}, "favorite_count": 0, "favorited": false, "full_text": "@iga_swiatek @WTA @XiaomiPL @GrupaPZU @ASICSTennis @BNPPARIBASOPEN @tecnifibre \ud83d\ude0d\ud83d\ude0d\ud83d\ude0d", "in_reply_to_screen_name": "iga_swiatek", "in_reply_to_status_id_str": "1447348840164564994", "in_reply_to_user_id_str": "1087289365544534016", "is_quote_status": false, "lang": "und", "quote_count": 0, "reply_count": 0, "retweet_count": 0, "retweeted": false, "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "user_id_str": "2225672017", "id_str": "1447349029159985152"}}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:34.932046+02:00", "raw_value": {"__typename": "Tweet", "rest_id": "1447349154066354178", "has_birdwatch_notes": false, "core": {"user_results": {"result": {"__typename": "User", "id": "VXNlcjo5OTUxMTA1NTQ=", "rest_id": "995110554", "affiliates_highlighted_label": {}, "legacy": {"created_at": "Fri Dec 07 13:59:25 +0000 2012", "default_profile": true, "default_profile_image": false, "description": "Na co dzie\u0144 drogowiec - projektant, popo\u0142udniami i wieczorami obserwator \u017cycia, polityki, sportu, gospodarki - prywatne opinie", "entities": {"description": {"urls": []}}, "fast_followers_count": 0, "favourites_count": 5643, "followers_count": 78, "friends_count": 1035, "has_custom_timelines": false, "is_translator": false, "listed_count": 1, "location": "O\u015bwi\u0119cim / Krak\u00f3w", "media_count": 89, "name": "Piotr Nowak", "normal_followers_count": 78, "pinned_tweet_ids_str": [], "profile_image_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 29.44, "rgb": {"blue": 217, "green": 209, "red": 200}}, {"percentage": 14.48, "rgb": {"blue": 20, "green": 26, "red": 35}}, {"percentage": 14.23, "rgb": {"blue": 19, "green": 43, "red": 94}}, {"percentage": 9.92, "rgb": {"blue": 167, "green": 201, "red": 226}}, {"percentage": 5.11, "rgb": {"blue": 23, "green": 30, "red": 224}}]}}}}, "profile_image_url_https": "https://pbs.twimg.com/profile_images/863082333187997698/9Q_DnB2Y_normal.jpg", "profile_interstitial_type": "", "protected": false, "screen_name": "Now_Pio", "statuses_count": 3403, "translator_type": "none", "verified": false, "withheld_in_countries": []}, "super_follow_eligible": false, "super_followed_by": false, "super_following": false}}}, "legacy": {"created_at": "Sun Oct 10 23:51:43 +0000 2021", "conversation_id_str": "1447348840164564994", "display_text_range": [79, 85], "entities": {"user_mentions": [{"id_str": "1087289365544534016", "name": "Iga \u015awi\u0105tek", "screen_name": "iga_swiatek", "indices": [0, 12]}, {"id_str": "17158140", "name": "wta", "screen_name": "WTA", "indices": [13, 17]}, {"id_str": "1252575285293260800", "name": "Xiaomi Polska", "screen_name": "XiaomiPL", "indices": [18, 27]}, {"id_str": "603617274", "name": "Grupa PZU", "screen_name": "GrupaPZU", "indices": [28, 37]}, {"id_str": "3111250452", "name": "ASICS Tennis", "screen_name": "ASICSTennis", "indices": [38, 50]}, {"id_str": "30017071", "name": "BNP Paribas Open", "screen_name": "BNPPARIBASOPEN", "indices": [51, 66]}, {"id_str": "64391043", "name": "Tecnifibre", "screen_name": "tecnifibre", "indices": [67, 78]}], "urls": [], "hashtags": [], "symbols": []}, "favorite_count": 0, "favorited": false, "full_text": "@iga_swiatek @WTA @XiaomiPL @GrupaPZU @ASICSTennis @BNPPARIBASOPEN @tecnifibre Klasa!", "in_reply_to_screen_name": "iga_swiatek", "in_reply_to_status_id_str": "1447348840164564994", "in_reply_to_user_id_str": "1087289365544534016", "is_quote_status": false, "lang": "in", "quote_count": 0, "reply_count": 0, "retweet_count": 0, "retweeted": false, "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "user_id_str": "995110554", "id_str": "1447349154066354178"}}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:34.932271+02:00", "raw_value": {"__typename": "Tweet", "rest_id": "1447349387949129729", "has_birdwatch_notes": false, "core": {"user_results": {"result": {"__typename": "User", "id": "VXNlcjoyMjI1NjcyMDE3", "rest_id": "2225672017", "affiliates_highlighted_label": {}, "legacy": {"created_at": "Sun Dec 01 22:21:34 +0000 2013", "default_profile": true, "default_profile_image": false, "description": "Philosopher by edu.& WOL; INTP, 5w4; Humanist; Musician; Liberal;\u26d4Trump; PIS-Poland's shame; Lewy & Iga \u015awi\u0105tek, i.a., its pride. \ud83c\udfbb\ud83d\udcda\ud83d\udeb4\u200d\u2642\ufe0f\ud83d\udd2d\ud83d\udc15\ud83d\udc08Positive\ud83d\ude4b\u200d\u2642\ufe0f\u270c\ufe0f", "entities": {"description": {"urls": []}}, "fast_followers_count": 0, "favourites_count": 9121, "followers_count": 1008, "friends_count": 1006, "has_custom_timelines": true, "is_translator": false, "listed_count": 0, "location": "Toronto; \u0141\u00f3d\u017a", "media_count": 53, "name": "Dariusz\u2764\ufe0f\ud83c\udf0e\ud83c\udde8\ud83c\udde6\ud83c\uddea\ud83c\uddfa\ud83c\uddf5\ud83c\uddf1 \ud83d\udc96Jazz #SilniRazem \ud83d\ude0e \u270c\ufe0f\ud83e\udd1f", "normal_followers_count": 1008, "pinned_tweet_ids_str": ["1390697385202962434"], "profile_banner_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 90.82, "rgb": {"blue": 44, "green": 42, "red": 32}}, {"percentage": 5.16, "rgb": {"blue": 59, "green": 74, "red": 97}}, {"percentage": 3.8, "rgb": {"blue": 106, "green": 100, "red": 114}}, {"percentage": 0.13, "rgb": {"blue": 87, "green": 122, "red": 176}}]}}}}, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2225672017/1621441107", "profile_image_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 42.0, "rgb": {"blue": 37, "green": 38, "red": 41}}, {"percentage": 31.68, "rgb": {"blue": 57, "green": 86, "red": 118}}, {"percentage": 10.02, "rgb": {"blue": 79, "green": 95, "red": 129}}, {"percentage": 6.65, "rgb": {"blue": 51, "green": 95, "red": 101}}, {"percentage": 3.87, "rgb": {"blue": 57, "green": 74, "red": 130}}]}}}}, "profile_image_url_https": "https://pbs.twimg.com/profile_images/567422419149676544/upGQRC0F_normal.jpeg", "profile_interstitial_type": "", "protected": false, "screen_name": "_dariusz__", "statuses_count": 6128, "translator_type": "none", "verified": false, "withheld_in_countries": []}, "super_follow_eligible": false, "super_followed_by": false, "super_following": false}}}, "legacy": {"created_at": "Sun Oct 10 23:52:39 +0000 2021", "conversation_id_str": "1447348840164564994", "display_text_range": [79, 112], "entities": {"user_mentions": [{"id_str": "1087289365544534016", "name": "Iga \u015awi\u0105tek", "screen_name": "iga_swiatek", "indices": [0, 12]}, {"id_str": "17158140", "name": "wta", "screen_name": "WTA", "indices": [13, 17]}, {"id_str": "1252575285293260800", "name": "Xiaomi Polska", "screen_name": "XiaomiPL", "indices": [18, 27]}, {"id_str": "603617274", "name": "Grupa PZU", "screen_name": "GrupaPZU", "indices": [28, 37]}, {"id_str": "3111250452", "name": "ASICS Tennis", "screen_name": "ASICSTennis", "indices": [38, 50]}, {"id_str": "30017071", "name": "BNP Paribas Open", "screen_name": "BNPPARIBASOPEN", "indices": [51, 66]}, {"id_str": "64391043", "name": "Tecnifibre", "screen_name": "tecnifibre", "indices": [67, 78]}], "urls": [], "hashtags": [], "symbols": []}, "favorite_count": 0, "favorited": false, "full_text": "@iga_swiatek @WTA @XiaomiPL @GrupaPZU @ASICSTennis @BNPPARIBASOPEN @tecnifibre Brawo i za myslenie i dbanie! \ud83d\ude0d\u270c\ufe0f", "in_reply_to_screen_name": "iga_swiatek", "in_reply_to_status_id_str": "1447348840164564994", "in_reply_to_user_id_str": "1087289365544534016", "is_quote_status": false, "lang": "pl", "quote_count": 0, "reply_count": 0, "retweet_count": 0, "retweeted": false, "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "user_id_str": "2225672017", "id_str": "1447349387949129729"}}}
is_cursor True last_scrapped_zero False
need_guest_token True
run request RequestDetails(http_method=<HttpMethod.GET: 1>, url='https://twitter.com/i/api/graphql/kUnCMgMYZCR8GyRZz76IQg/TweetDetail', headers={'Authorization': 'Bearer AAAAAAAAAAAAAAAAAAAAANRILgAAAAAAnNwIzUejRCOuH5E6I8xnZz4puTs%3D1Zv7ttfk8LF81IUq16cHjhLTvJu4FA33AGWWjCpTnA', 'x-guest-token': '1448607906950168577'}, params={'variables': '{"focalTweetId": "1447348840164564994", "with_rux_injections": true, "includePromotedContent": true, "withCommunity": true, "withTweetQuoteCount": true, "withBirdwatchNotes": true, "withSuperFollowsUserFields": true, "withUserResults": true, "withBirdwatchPivots": true, "withReactionsMetadata": true, "withReactionsPerspective": true, "withSuperFollowsTweetFields": true, "withVoice": true, "cursor": "QAAAAPAeHBlmjMC5tb6vgpYoiICzxduxgpYogoCy6bKmgpYogICz0cGRgpYohMCyoeSYGwDwAMC-3fKVgpYoJQISFQ4AAA"}'}, timeout=20)
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:35.527050+02:00", "raw_value": {"__typename": "Tweet", "rest_id": "1447349413328789507", "has_birdwatch_notes": false, "core": {"user_results": {"result": {"__typename": "User", "id": "VXNlcjoxNDE2NDQxOTY0MDUzMDI4ODY3", "rest_id": "1416441964053028867", "affiliates_highlighted_label": {}, "legacy": {"created_at": "Sat Jul 17 16:57:43 +0000 2021", "default_profile": true, "default_profile_image": false, "description": "tenis\ud83c\udde8\ud83c\udde6", "entities": {"description": {"urls": []}}, "fast_followers_count": 0, "favourites_count": 2956, "followers_count": 58, "friends_count": 106, "has_custom_timelines": true, "is_translator": false, "listed_count": 0, "location": "argentina", "media_count": 88, "name": "mica\u22c6", "normal_followers_count": 58, "pinned_tweet_ids_str": ["1422979899510374410"], "profile_banner_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 77.85, "rgb": {"blue": 38, "green": 35, "red": 43}}, {"percentage": 13.63, "rgb": {"blue": 113, "green": 108, "red": 127}}, {"percentage": 4.96, "rgb": {"blue": 65, "green": 87, "red": 139}}, {"percentage": 1.47, "rgb": {"blue": 42, "green": 61, "red": 69}}, {"percentage": 1.14, "rgb": {"blue": 139, "green": 122, "red": 124}}]}}}}, "profile_banner_url": "https://pbs.twimg.com/profile_banners/1416441964053028867/1628262158", "profile_image_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 53.52, "rgb": {"blue": 47, "green": 34, "red": 42}}, {"percentage": 19.97, "rgb": {"blue": 165, "green": 162, "red": 185}}, {"percentage": 3.22, "rgb": {"blue": 71, "green": 44, "red": 47}}, {"percentage": 3.08, "rgb": {"blue": 139, "green": 154, "red": 190}}, {"percentage": 2.14, "rgb": {"blue": 51, "green": 47, "red": 193}}]}}}}, "profile_image_url_https": "https://pbs.twimg.com/profile_images/1444016520246480896/MQegMZ1f_normal.jpg", "profile_interstitial_type": "", "protected": false, "screen_name": "clayseazn", "statuses_count": 1046, "translator_type": "none", "verified": false, "withheld_in_countries": []}, "super_follow_eligible": false, "super_followed_by": false, "super_following": false}}}, "legacy": {"created_at": "Sun Oct 10 23:52:45 +0000 2021", "conversation_id_str": "1447348840164564994", "display_text_range": [79, 82], "entities": {"user_mentions": [{"id_str": "1087289365544534016", "name": "Iga \u015awi\u0105tek", "screen_name": "iga_swiatek", "indices": [0, 12]}, {"id_str": "17158140", "name": "wta", "screen_name": "WTA", "indices": [13, 17]}, {"id_str": "1252575285293260800", "name": "Xiaomi Polska", "screen_name": "XiaomiPL", "indices": [18, 27]}, {"id_str": "603617274", "name": "Grupa PZU", "screen_name": "GrupaPZU", "indices": [28, 37]}, {"id_str": "3111250452", "name": "ASICS Tennis", "screen_name": "ASICSTennis", "indices": [38, 50]}, {"id_str": "30017071", "name": "BNP Paribas Open", "screen_name": "BNPPARIBASOPEN", "indices": [51, 66]}, {"id_str": "64391043", "name": "Tecnifibre", "screen_name": "tecnifibre", "indices": [67, 78]}], "urls": [], "hashtags": [], "symbols": []}, "favorite_count": 0, "favorited": false, "full_text": "@iga_swiatek @WTA @XiaomiPL @GrupaPZU @ASICSTennis @BNPPARIBASOPEN @tecnifibre \ud83e\udde1\ud83e\udde1\ud83e\udde1", "in_reply_to_screen_name": "iga_swiatek", "in_reply_to_status_id_str": "1447348840164564994", "in_reply_to_user_id_str": "1087289365544534016", "is_quote_status": false, "lang": "und", "quote_count": 0, "reply_count": 0, "retweet_count": 0, "retweeted": false, "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "user_id_str": "1416441964053028867", "id_str": "1447349413328789507"}}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:35.527335+02:00", "raw_value": {"__typename": "Tweet", "rest_id": "1447349716124057605", "has_birdwatch_notes": false, "core": {"user_results": {"result": {"__typename": "User", "id": "VXNlcjoyNTQzNTc3MjM=", "rest_id": "254357723", "affiliates_highlighted_label": {}, "legacy": {"created_at": "Sat Feb 19 03:48:38 +0000 2011", "default_profile": false, "default_profile_image": false, "description": "River Plate \u26aa\ufe0f\ud83d\udd34La m\u00fasica me hace volar. \u2665Jesse & Joy\u2665@espacialarg \u2665\u266c Periodista Deportiva \ud83c\udfbe\ud83c\udfd1\u26bd\ufe0f #Hufflepuff \ud83c\udfbe Iga Swiatek", "entities": {"description": {"urls": []}}, "fast_followers_count": 0, "favourites_count": 12869, "followers_count": 1158, "friends_count": 1532, "has_custom_timelines": true, "is_translator": false, "listed_count": 5, "location": "Avellaneda Santa Fe Argentina", "media_count": 1300, "name": "Carla \ud83c\udde6\ud83c\uddf7\ud83c\uddf5\ud83c\uddf1", "normal_followers_count": 1158, "pinned_tweet_ids_str": ["1159910068466454529"], "profile_banner_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 70.44, "rgb": {"blue": 135, "green": 141, "red": 172}}, {"percentage": 12.06, "rgb": {"blue": 25, "green": 26, "red": 35}}, {"percentage": 11.23, "rgb": {"blue": 111, "green": 117, "red": 152}}, {"percentage": 0.91, "rgb": {"blue": 146, "green": 170, "red": 230}}, {"percentage": 0.91, "rgb": {"blue": 184, "green": 190, "red": 188}}]}}}}, "profile_banner_url": "https://pbs.twimg.com/profile_banners/254357723/1604378130", "profile_image_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 63.84, "rgb": {"blue": 2, "green": 16, "red": 18}}, {"percentage": 14.68, "rgb": {"blue": 120, "green": 144, "red": 193}}, {"percentage": 9.64, "rgb": {"blue": 38, "green": 68, "red": 94}}, {"percentage": 3.59, "rgb": {"blue": 205, "green": 198, "red": 203}}, {"percentage": 1.41, "rgb": {"blue": 185, "green": 202, "red": 137}}]}}}}, "profile_image_url_https": "https://pbs.twimg.com/profile_images/1347973296743198723/siuFjRAn_normal.jpg", "profile_interstitial_type": "", "protected": false, "screen_name": "CarliStechina", "statuses_count": 46870, "translator_type": "none", "verified": false, "withheld_in_countries": []}, "super_follow_eligible": false, "super_followed_by": false, "super_following": false}}}, "legacy": {"created_at": "Sun Oct 10 23:53:57 +0000 2021", "conversation_id_str": "1447348840164564994", "display_text_range": [79, 97], "entities": {"user_mentions": [{"id_str": "1087289365544534016", "name": "Iga \u015awi\u0105tek", "screen_name": "iga_swiatek", "indices": [0, 12]}, {"id_str": "17158140", "name": "wta", "screen_name": "WTA", "indices": [13, 17]}, {"id_str": "1252575285293260800", "name": "Xiaomi Polska", "screen_name": "XiaomiPL", "indices": [18, 27]}, {"id_str": "603617274", "name": "Grupa PZU", "screen_name": "GrupaPZU", "indices": [28, 37]}, {"id_str": "3111250452", "name": "ASICS Tennis", "screen_name": "ASICSTennis", "indices": [38, 50]}, {"id_str": "30017071", "name": "BNP Paribas Open", "screen_name": "BNPPARIBASOPEN", "indices": [51, 66]}, {"id_str": "64391043", "name": "Tecnifibre", "screen_name": "tecnifibre", "indices": [67, 78]}], "urls": [], "hashtags": [], "symbols": []}, "favorite_count": 6, "favorited": false, "full_text": "@iga_swiatek @WTA @XiaomiPL @GrupaPZU @ASICSTennis @BNPPARIBASOPEN @tecnifibre proud of you Iga!!", "in_reply_to_screen_name": "iga_swiatek", "in_reply_to_status_id_str": "1447348840164564994", "in_reply_to_user_id_str": "1087289365544534016", "is_quote_status": false, "lang": "en", "quote_count": 0, "reply_count": 0, "retweet_count": 0, "retweeted": false, "source": "<a href=\"https://mobile.twitter.com\" rel=\"nofollow\">Twitter Web App</a>", "user_id_str": "254357723", "id_str": "1447349716124057605"}}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:35.527559+02:00", "raw_value": {"__typename": "Tweet", "rest_id": "1447349818817490945", "has_birdwatch_notes": false, "core": {"user_results": {"result": {"__typename": "User", "id": "VXNlcjoxMTQzODE3MzM1Mzg1NjEyMjg4", "rest_id": "1143817335385612288", "affiliates_highlighted_label": {}, "legacy": {"created_at": "Wed Jun 26 09:44:38 +0000 2019", "default_profile": true, "default_profile_image": false, "description": "#LechPozna\u0144\n#MajsterNaStulecie\n#TeamSkor\u017ca\n#KosovoJeSrbija\n#Lw\u00f3wJestPolski", "entities": {"description": {"urls": []}}, "fast_followers_count": 0, "favourites_count": 35528, "followers_count": 758, "friends_count": 1071, "has_custom_timelines": false, "is_translator": false, "listed_count": 5, "location": "Pozna\u0144, Pleszew", "media_count": 667, "name": "Kamil", "normal_followers_count": 758, "pinned_tweet_ids_str": [], "profile_banner_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 55.16, "rgb": {"blue": 26, "green": 29, "red": 18}}, {"percentage": 13.23, "rgb": {"blue": 101, "green": 136, "red": 48}}, {"percentage": 9.9, "rgb": {"blue": 118, "green": 101, "red": 44}}, {"percentage": 7.79, "rgb": {"blue": 33, "green": 33, "red": 66}}, {"percentage": 3.72, "rgb": {"blue": 96, "green": 62, "red": 72}}]}}}}, "profile_banner_url": "https://pbs.twimg.com/profile_banners/1143817335385612288/1613268615", "profile_image_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 33.79, "rgb": {"blue": 39, "green": 30, "red": 25}}, {"percentage": 29.82, "rgb": {"blue": 178, "green": 114, "red": 55}}, {"percentage": 25.72, "rgb": {"blue": 137, "green": 120, "red": 99}}, {"percentage": 3.72, "rgb": {"blue": 136, "green": 148, "red": 159}}, {"percentage": 2.71, "rgb": {"blue": 76, "green": 93, "red": 126}}]}}}}, "profile_image_url_https": "https://pbs.twimg.com/profile_images/1442962372293914624/GYOD-6oW_normal.jpg", "profile_interstitial_type": "", "protected": false, "screen_name": "BronekLP", "statuses_count": 18474, "translator_type": "none", "verified": false, "withheld_in_countries": []}, "super_follow_eligible": false, "super_followed_by": false, "super_following": false}}}, "legacy": {"created_at": "Sun Oct 10 23:54:21 +0000 2021", "conversation_id_str": "1447348840164564994", "display_text_range": [79, 91], "entities": {"user_mentions": [{"id_str": "1087289365544534016", "name": "Iga \u015awi\u0105tek", "screen_name": "iga_swiatek", "indices": [0, 12]}, {"id_str": "17158140", "name": "wta", "screen_name": "WTA", "indices": [13, 17]}, {"id_str": "1252575285293260800", "name": "Xiaomi Polska", "screen_name": "XiaomiPL", "indices": [18, 27]}, {"id_str": "603617274", "name": "Grupa PZU", "screen_name": "GrupaPZU", "indices": [28, 37]}, {"id_str": "3111250452", "name": "ASICS Tennis", "screen_name": "ASICSTennis", "indices": [38, 50]}, {"id_str": "30017071", "name": "BNP Paribas Open", "screen_name": "BNPPARIBASOPEN", "indices": [51, 66]}, {"id_str": "64391043", "name": "Tecnifibre", "screen_name": "tecnifibre", "indices": [67, 78]}], "urls": [], "hashtags": [], "symbols": []}, "favorite_count": 0, "favorited": false, "full_text": "@iga_swiatek @WTA @XiaomiPL @GrupaPZU @ASICSTennis @BNPPARIBASOPEN @tecnifibre Brawo Iga \ud83d\udc4f\ud83d\ude0d", "in_reply_to_screen_name": "iga_swiatek", "in_reply_to_status_id_str": "1447348840164564994", "in_reply_to_user_id_str": "1087289365544534016", "is_quote_status": false, "lang": "pl", "quote_count": 0, "reply_count": 0, "retweet_count": 0, "retweeted": false, "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "user_id_str": "1143817335385612288", "id_str": "1447349818817490945"}}}
is_cursor True last_scrapped_zero False
need_guest_token True
run request RequestDetails(http_method=<HttpMethod.GET: 1>, url='https://twitter.com/i/api/graphql/kUnCMgMYZCR8GyRZz76IQg/TweetDetail', headers={'Authorization': 'Bearer AAAAAAAAAAAAAAAAAAAAANRILgAAAAAAnNwIzUejRCOuH5E6I8xnZz4puTs%3D1Zv7ttfk8LF81IUq16cHjhLTvJu4FA33AGWWjCpTnA', 'x-guest-token': '1448607906950168577'}, params={'variables': '{"focalTweetId": "1447348840164564994", "with_rux_injections": true, "includePromotedContent": true, "withCommunity": true, "withTweetQuoteCount": true, "withBirdwatchNotes": true, "withSuperFollowsUserFields": true, "withUserResults": true, "withBirdwatchPivots": true, "withReactionsMetadata": true, "withReactionsPerspective": true, "withSuperFollowsTweetFields": true, "withVoice": true, "cursor": "WwAAAPAVHBmWhoCp9e-ngpYogsC9hb2_gpYojMC5tb6vgpYoiICzxduxGwDxCICy6bKmgpYogICz0cGRgpYohMCyoeSYNgDwCL7d8pWCliiKgLL1v7mCliglAhIVDgAA"}'}, timeout=20)
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:36.058060+02:00", "raw_value": {"__typename": "Tweet", "rest_id": "1447349859879690245", "has_birdwatch_notes": false, "core": {"user_results": {"result": {"__typename": "User", "id": "VXNlcjoyNTg0MDEzMjQ0", "rest_id": "2584013244", "affiliates_highlighted_label": {}, "legacy": {"created_at": "Mon Jun 23 13:41:08 +0000 2014", "default_profile": false, "default_profile_image": false, "description": "Writer, coder, NYC lover\n// Madly and hopelessly in love with Iga \u015awi\u0105tek\n// I love you, ain't that the worst thing that you ever heard?\n// \ud83c\udf08She/her\ud83c\udf08\ud83c\uddf5\ud83c\uddf1", "entities": {"description": {"urls": []}}, "fast_followers_count": 0, "favourites_count": 163470, "followers_count": 416, "friends_count": 1237, "has_custom_timelines": true, "is_translator": false, "listed_count": 8, "location": "waiting for a visa to gayland", "media_count": 168, "name": "kompka\u26a1", "normal_followers_count": 416, "pinned_tweet_ids_str": ["1251200410758647811"], "profile_banner_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 79.05, "rgb": {"blue": 217, "green": 217, "red": 217}}, {"percentage": 10.74, "rgb": {"blue": 53, "green": 53, "red": 53}}]}}}}, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2584013244/1470767904", "profile_image_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 45.69, "rgb": {"blue": 54, "green": 34, "red": 17}}, {"percentage": 20.79, "rgb": {"blue": 249, "green": 253, "red": 241}}, {"percentage": 4.32, "rgb": {"blue": 245, "green": 222, "red": 127}}, {"percentage": 3.53, "rgb": {"blue": 77, "green": 24, "red": 11}}, {"percentage": 2.52, "rgb": {"blue": 8, "green": 184, "red": 238}}]}}}}, "profile_image_url_https": "https://pbs.twimg.com/profile_images/1423987225939877890/GRVz21hV_normal.jpg", "profile_interstitial_type": "", "protected": false, "screen_name": "kompka1922", "statuses_count": 16930, "translator_type": "regular", "verified": false, "withheld_in_countries": []}, "super_follow_eligible": false, "super_followed_by": false, "super_following": false}}}, "legacy": {"created_at": "Sun Oct 10 23:54:31 +0000 2021", "conversation_id_str": "1447348840164564994", "display_text_range": [79, 170], "entities": {"user_mentions": [{"id_str": "1087289365544534016", "name": "Iga \u015awi\u0105tek", "screen_name": "iga_swiatek", "indices": [0, 12]}, {"id_str": "17158140", "name": "wta", "screen_name": "WTA", "indices": [13, 17]}, {"id_str": "1252575285293260800", "name": "Xiaomi Polska", "screen_name": "XiaomiPL", "indices": [18, 27]}, {"id_str": "603617274", "name": "Grupa PZU", "screen_name": "GrupaPZU", "indices": [28, 37]}, {"id_str": "3111250452", "name": "ASICS Tennis", "screen_name": "ASICSTennis", "indices": [38, 50]}, {"id_str": "30017071", "name": "BNP Paribas Open", "screen_name": "BNPPARIBASOPEN", "indices": [51, 66]}, {"id_str": "64391043", "name": "Tecnifibre", "screen_name": "tecnifibre", "indices": [67, 78]}], "urls": [], "hashtags": [], "symbols": []}, "favorite_count": 4, "favorited": false, "full_text": "@iga_swiatek @WTA @XiaomiPL @GrupaPZU @ASICSTennis @BNPPARIBASOPEN @tecnifibre To bardzo wa\u017cne, \u017ceby sportowcy tacy jak Ty m\u00f3wili o zdrowiu psychicznym. Dzi\u0119kuj\u0119 za to \u2764\ufe0f", "in_reply_to_screen_name": "iga_swiatek", "in_reply_to_status_id_str": "1447348840164564994", "in_reply_to_user_id_str": "1087289365544534016", "is_quote_status": false, "lang": "pl", "quote_count": 0, "reply_count": 0, "retweet_count": 0, "retweeted": false, "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "user_id_str": "2584013244", "id_str": "1447349859879690245"}}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:36.058354+02:00", "raw_value": {"__typename": "Tweet", "rest_id": "1447349863730106371", "has_birdwatch_notes": false, "core": {"user_results": {"result": {"__typename": "User", "id": "VXNlcjoxMjEzMDY1Mjc3ODgzMTA5Mzc2", "rest_id": "1213065277883109376", "affiliates_highlighted_label": {}, "legacy": {"created_at": "Fri Jan 03 11:51:27 +0000 2020", "default_profile": true, "default_profile_image": false, "description": "| spurs Fan | do what I like |", "entities": {"description": {"urls": []}}, "fast_followers_count": 0, "favourites_count": 41150, "followers_count": 578, "friends_count": 1034, "has_custom_timelines": true, "is_translator": false, "listed_count": 0, "location": "", "media_count": 4939, "name": "Kailahh | #NunoOut", "normal_followers_count": 578, "pinned_tweet_ids_str": ["1412146294802485251"], "profile_banner_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 34.67, "rgb": {"blue": 64, "green": 50, "red": 52}}, {"percentage": 16.68, "rgb": {"blue": 88, "green": 102, "red": 132}}, {"percentage": 12.25, "rgb": {"blue": 191, "green": 198, "red": 216}}, {"percentage": 5.74, "rgb": {"blue": 92, "green": 33, "red": 39}}, {"percentage": 4.96, "rgb": {"blue": 126, "green": 161, "red": 211}}]}}}}, "profile_banner_url": "https://pbs.twimg.com/profile_banners/1213065277883109376/1618403606", "profile_image_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 50.1, "rgb": {"blue": 226, "green": 225, "red": 229}}, {"percentage": 32.76, "rgb": {"blue": 23, "green": 30, "red": 38}}, {"percentage": 5.26, "rgb": {"blue": 96, "green": 133, "red": 171}}, {"percentage": 4.67, "rgb": {"blue": 93, "green": 123, "red": 127}}, {"percentage": 0.6, "rgb": {"blue": 130, "green": 191, "red": 201}}]}}}}, "profile_image_url_https": "https://pbs.twimg.com/profile_images/1263526216310587397/YpZ8KkML_normal.jpg", "profile_interstitial_type": "", "protected": false, "screen_name": "TheOnlyKailahh", "statuses_count": 27369, "translator_type": "none", "verified": false, "withheld_in_countries": []}, "super_follow_eligible": false, "super_followed_by": false, "super_following": false}}}, "legacy": {"created_at": "Sun Oct 10 23:54:32 +0000 2021", "conversation_id_str": "1447348840164564994", "display_text_range": [79, 134], "entities": {"user_mentions": [{"id_str": "1087289365544534016", "name": "Iga \u015awi\u0105tek", "screen_name": "iga_swiatek", "indices": [0, 12]}, {"id_str": "17158140", "name": "wta", "screen_name": "WTA", "indices": [13, 17]}, {"id_str": "1252575285293260800", "name": "Xiaomi Polska", "screen_name": "XiaomiPL", "indices": [18, 27]}, {"id_str": "603617274", "name": "Grupa PZU", "screen_name": "GrupaPZU", "indices": [28, 37]}, {"id_str": "3111250452", "name": "ASICS Tennis", "screen_name": "ASICSTennis", "indices": [38, 50]}, {"id_str": "30017071", "name": "BNP Paribas Open", "screen_name": "BNPPARIBASOPEN", "indices": [51, 66]}, {"id_str": "64391043", "name": "Tecnifibre", "screen_name": "tecnifibre", "indices": [67, 78]}], "urls": [], "hashtags": [], "symbols": []}, "favorite_count": 17, "favorited": false, "full_text": "@iga_swiatek @WTA @XiaomiPL @GrupaPZU @ASICSTennis @BNPPARIBASOPEN @tecnifibre beautifully said Iga, congrats on the win today Iga! \u2764\ufe0f", "in_reply_to_screen_name": "iga_swiatek", "in_reply_to_status_id_str": "1447348840164564994", "in_reply_to_user_id_str": "1087289365544534016", "is_quote_status": false, "lang": "en", "quote_count": 0, "reply_count": 0, "retweet_count": 0, "retweeted": false, "source": "<a href=\"https://mobile.twitter.com\" rel=\"nofollow\">Twitter Web App</a>", "user_id_str": "1213065277883109376", "id_str": "1447349863730106371"}}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:36.058646+02:00", "raw_value": {"__typename": "Tweet", "rest_id": "1447350045490229251", "has_birdwatch_notes": false, "core": {"user_results": {"result": {"__typename": "User", "id": "VXNlcjoyMDE0OTIzNjg=", "rest_id": "201492368", "affiliates_highlighted_label": {}, "legacy": {"created_at": "Mon Oct 11 23:52:32 +0000 2010", "default_profile": true, "default_profile_image": false, "description": "Wprost przeciwnie, a nawet wr\u0119cz odwrotnie...", "entities": {"description": {"urls": []}}, "fast_followers_count": 0, "favourites_count": 3650, "followers_count": 67, "friends_count": 85, "has_custom_timelines": false, "is_translator": false, "listed_count": 0, "location": "", "media_count": 189, "name": "Zireal", "normal_followers_count": 67, "pinned_tweet_ids_str": [], "profile_banner_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 44.28, "rgb": {"blue": 213, "green": 216, "red": 218}}, {"percentage": 34.25, "rgb": {"blue": 241, "green": 177, "red": 106}}, {"percentage": 12.25, "rgb": {"blue": 134, "green": 125, "red": 102}}, {"percentage": 4.78, "rgb": {"blue": 231, "green": 201, "red": 170}}, {"percentage": 1.42, "rgb": {"blue": 234, "green": 151, "red": 60}}]}}}}, "profile_banner_url": "https://pbs.twimg.com/profile_banners/201492368/1633863472", "profile_image_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 51.32, "rgb": {"blue": 203, "green": 181, "red": 149}}, {"percentage": 43.06, "rgb": {"blue": 1, "green": 1, "red": 1}}, {"percentage": 5.02, "rgb": {"blue": 157, "green": 129, "red": 93}}]}}}}, "profile_image_url_https": "https://pbs.twimg.com/profile_images/3253549562/07aa79f91cf88c35cbec3ae16a97f7f6_normal.png", "profile_interstitial_type": "", "protected": false, "screen_name": "Diuhantus", "statuses_count": 1592, "translator_type": "none", "verified": false, "withheld_in_countries": []}, "super_follow_eligible": false, "super_followed_by": false, "super_following": false}}}, "legacy": {"created_at": "Sun Oct 10 23:55:15 +0000 2021", "conversation_id_str": "1447348840164564994", "display_text_range": [79, 84], "entities": {"media": [{"display_url": "pic.twitter.com/V3LAltUhPh", "expanded_url": "https://twitter.com/Diuhantus/status/1447350045490229251/photo/1", "id_str": "1447350038036893696", "indices": [85, 108], "media_url_https": "https://pbs.twimg.com/tweet_video_thumb/FBYFMPLWUAAPZS6.jpg", "type": "photo", "url": "https://t.co/V3LAltUhPh", "features": {}, "sizes": {"large": {"h": 156, "w": 220, "resize": "fit"}, "medium": {"h": 156, "w": 220, "resize": "fit"}, "small": {"h": 156, "w": 220, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "original_info": {"height": 156, "width": 220}}], "user_mentions": [{"id_str": "1087289365544534016", "name": "Iga \u015awi\u0105tek", "screen_name": "iga_swiatek", "indices": [0, 12]}, {"id_str": "17158140", "name": "wta", "screen_name": "WTA", "indices": [13, 17]}, {"id_str": "1252575285293260800", "name": "Xiaomi Polska", "screen_name": "XiaomiPL", "indices": [18, 27]}, {"id_str": "603617274", "name": "Grupa PZU", "screen_name": "GrupaPZU", "indices": [28, 37]}, {"id_str": "3111250452", "name": "ASICS Tennis", "screen_name": "ASICSTennis", "indices": [38, 50]}, {"id_str": "30017071", "name": "BNP Paribas Open", "screen_name": "BNPPARIBASOPEN", "indices": [51, 66]}, {"id_str": "64391043", "name": "Tecnifibre", "screen_name": "tecnifibre", "indices": [67, 78]}], "urls": [], "hashtags": [], "symbols": []}, "extended_entities": {"media": [{"display_url": "pic.twitter.com/V3LAltUhPh", "expanded_url": "https://twitter.com/Diuhantus/status/1447350045490229251/photo/1", "ext_alt_text": "Thank You Bow Down GIF", "id_str": "1447350038036893696", "indices": [85, 108], "media_key": "16_1447350038036893696", "media_url_https": "https://pbs.twimg.com/tweet_video_thumb/FBYFMPLWUAAPZS6.jpg", "type": "animated_gif", "url": "https://t.co/V3LAltUhPh", "ext_media_color": {"palette": [{"percentage": 36.93, "rgb": {"blue": 75, "green": 41, "red": 88}}, {"percentage": 18.99, "rgb": {"blue": 70, "green": 123, "red": 241}}, {"percentage": 14.78, "rgb": {"blue": 104, "green": 77, "red": 73}}, {"percentage": 8.04, "rgb": {"blue": 60, "green": 46, "red": 110}}, {"percentage": 5.59, "rgb": {"blue": 90, "green": 34, "red": 48}}]}, "ext_media_availability": {"status": "Available"}, "features": {}, "sizes": {"large": {"h": 156, "w": 220, "resize": "fit"}, "medium": {"h": 156, "w": 220, "resize": "fit"}, "small": {"h": 156, "w": 220, "resize": "fit"}, "thumb": {"h": 150, "w": 150, "resize": "crop"}}, "original_info": {"height": 156, "width": 220}, "video_info": {"aspect_ratio": [55, 39], "variants": [{"bitrate": 0, "content_type": "video/mp4", "url": "https://video.twimg.com/tweet_video/FBYFMPLWUAAPZS6.mp4"}]}}]}, "favorite_count": 1, "favorited": false, "full_text": "@iga_swiatek @WTA @XiaomiPL @GrupaPZU @ASICSTennis @BNPPARIBASOPEN @tecnifibre IGA \ud83e\udd70 https://t.co/V3LAltUhPh", "in_reply_to_screen_name": "iga_swiatek", "in_reply_to_status_id_str": "1447348840164564994", "in_reply_to_user_id_str": "1087289365544534016", "is_quote_status": false, "lang": "und", "possibly_sensitive": false, "possibly_sensitive_editable": true, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "retweeted": false, "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "user_id_str": "201492368", "id_str": "1447350045490229251"}}}
is_cursor True last_scrapped_zero False
need_guest_token True
run request RequestDetails(http_method=<HttpMethod.GET: 1>, url='https://twitter.com/i/api/graphql/kUnCMgMYZCR8GyRZz76IQg/TweetDetail', headers={'Authorization': 'Bearer AAAAAAAAAAAAAAAAAAAAANRILgAAAAAAnNwIzUejRCOuH5E6I8xnZz4puTs%3D1Zv7ttfk8LF81IUq16cHjhLTvJu4FA33AGWWjCpTnA', 'x-guest-token': '1448607906950168577'}, params={'variables': '{"focalTweetId": "1447348840164564994", "with_rux_injections": true, "includePromotedContent": true, "withCommunity": true, "withTweetQuoteCount": true, "withBirdwatchNotes": true, "withSuperFollowsUserFields": true, "withUserResults": true, "withBirdwatchPivots": true, "withReactionsMetadata": true, "withReactionsPerspective": true, "withSuperFollowsTweetFields": true, "withVoice": true, "cursor": "dgAAAPAeHBnGhoCp9e-ngpYogsC9hb2_gpYojMC5tb6vgpYohsC58dXMgpYoiICzxduxJADxEYCy6bKmgpYogICz0cGRgpYohMCyoeSYgpYoioC5_e7BSABBvt3ylRIAQbL1v7lIAOC-1YvCgpYoJQISFQ4AAA"}'}, timeout=20)
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:36.575576+02:00", "raw_value": {"__typename": "Tweet", "rest_id": "1447350157918580746", "has_birdwatch_notes": false, "core": {"user_results": {"result": {"__typename": "User", "id": "VXNlcjo0NzEzNzU1MTg4", "rest_id": "4713755188", "affiliates_highlighted_label": {}, "legacy": {"created_at": "Tue Jan 05 10:07:40 +0000 2016", "default_profile": true, "default_profile_image": false, "description": "I-N-I Music & Sport Agency | +48 504 211 224 | m.k.matuszewski@gmail.com", "entities": {"description": {"urls": []}}, "fast_followers_count": 0, "favourites_count": 53229, "followers_count": 4986, "friends_count": 5432, "has_custom_timelines": false, "is_translator": false, "listed_count": 11, "location": "Warszawa, Polska", "media_count": 1015, "name": "Marcin Matuszewski", "normal_followers_count": 4986, "pinned_tweet_ids_str": [], "profile_banner_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 38.1, "rgb": {"blue": 221, "green": 209, "red": 202}}, {"percentage": 13.08, "rgb": {"blue": 16, "green": 11, "red": 18}}, {"percentage": 10.17, "rgb": {"blue": 179, "green": 134, "red": 93}}, {"percentage": 7.49, "rgb": {"blue": 38, "green": 41, "red": 134}}, {"percentage": 4.36, "rgb": {"blue": 185, "green": 206, "red": 223}}]}}}}, "profile_banner_url": "https://pbs.twimg.com/profile_banners/4713755188/1618662916", "profile_image_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 67.54, "rgb": {"blue": 214, "green": 224, "red": 228}}, {"percentage": 24.32, "rgb": {"blue": 28, "green": 27, "red": 25}}, {"percentage": 6.58, "rgb": {"blue": 111, "green": 116, "red": 115}}, {"percentage": 2.83, "rgb": {"blue": 100, "green": 102, "red": 99}}]}}}}, "profile_image_url_https": "https://pbs.twimg.com/profile_images/1436678447091392517/FBma4vMg_normal.jpg", "profile_interstitial_type": "", "protected": false, "screen_name": "matuszewski_ini", "statuses_count": 7664, "translator_type": "none", "verified": false, "withheld_in_countries": []}, "super_follow_eligible": false, "super_followed_by": false, "super_following": false}}}, "legacy": {"created_at": "Sun Oct 10 23:55:42 +0000 2021", "conversation_id_str": "1447348840164564994", "display_text_range": [79, 86], "entities": {"user_mentions": [{"id_str": "1087289365544534016", "name": "Iga \u015awi\u0105tek", "screen_name": "iga_swiatek", "indices": [0, 12]}, {"id_str": "17158140", "name": "wta", "screen_name": "WTA", "indices": [13, 17]}, {"id_str": "1252575285293260800", "name": "Xiaomi Polska", "screen_name": "XiaomiPL", "indices": [18, 27]}, {"id_str": "603617274", "name": "Grupa PZU", "screen_name": "GrupaPZU", "indices": [28, 37]}, {"id_str": "3111250452", "name": "ASICS Tennis", "screen_name": "ASICSTennis", "indices": [38, 50]}, {"id_str": "30017071", "name": "BNP Paribas Open", "screen_name": "BNPPARIBASOPEN", "indices": [51, 66]}, {"id_str": "64391043", "name": "Tecnifibre", "screen_name": "tecnifibre", "indices": [67, 78]}], "urls": [], "hashtags": [], "symbols": []}, "favorite_count": 0, "favorited": false, "full_text": "@iga_swiatek @WTA @XiaomiPL @GrupaPZU @ASICSTennis @BNPPARIBASOPEN @tecnifibre Uk\u0142ony!", "in_reply_to_screen_name": "iga_swiatek", "in_reply_to_status_id_str": "1447348840164564994", "in_reply_to_user_id_str": "1087289365544534016", "is_quote_status": false, "lang": "pl", "quote_count": 0, "reply_count": 0, "retweet_count": 0, "retweeted": false, "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "user_id_str": "4713755188", "id_str": "1447350157918580746"}}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:36.575748+02:00", "raw_value": {"__typename": "Tweet", "rest_id": "1447350197730701313", "has_birdwatch_notes": false, "core": {"user_results": {"result": {"__typename": "User", "id": "VXNlcjoyNzUyMjUyOTAx", "rest_id": "2752252901", "affiliates_highlighted_label": {}, "legacy": {"created_at": "Wed Aug 27 03:29:50 +0000 2014", "default_profile": true, "default_profile_image": false, "description": "Live a great story", "entities": {"description": {"urls": []}}, "fast_followers_count": 0, "favourites_count": 48467, "followers_count": 404, "friends_count": 1983, "has_custom_timelines": true, "is_translator": false, "listed_count": 25, "location": "", "media_count": 1756, "name": "BM@paradise", "normal_followers_count": 404, "pinned_tweet_ids_str": ["1426246195354095619"], "profile_image_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 81.0, "rgb": {"blue": 3, "green": 1, "red": 1}}, {"percentage": 5.77, "rgb": {"blue": 132, "green": 150, "red": 200}}, {"percentage": 2.97, "rgb": {"blue": 60, "green": 74, "red": 113}}, {"percentage": 1.7, "rgb": {"blue": 209, "green": 110, "red": 6}}, {"percentage": 1.31, "rgb": {"blue": 56, "green": 22, "red": 4}}]}}}}, "profile_image_url_https": "https://pbs.twimg.com/profile_images/1440135056803045385/X2j2lZ09_normal.jpg", "profile_interstitial_type": "", "protected": false, "screen_name": "biljanamontele1", "statuses_count": 25362, "translator_type": "none", "verified": false, "withheld_in_countries": []}, "super_follow_eligible": false, "super_followed_by": false, "super_following": false}}}, "legacy": {"created_at": "Sun Oct 10 23:55:52 +0000 2021", "conversation_id_str": "1447348840164564994", "display_text_range": [79, 118], "entities": {"user_mentions": [{"id_str": "1087289365544534016", "name": "Iga \u015awi\u0105tek", "screen_name": "iga_swiatek", "indices": [0, 12]}, {"id_str": "17158140", "name": "wta", "screen_name": "WTA", "indices": [13, 17]}, {"id_str": "1252575285293260800", "name": "Xiaomi Polska", "screen_name": "XiaomiPL", "indices": [18, 27]}, {"id_str": "603617274", "name": "Grupa PZU", "screen_name": "GrupaPZU", "indices": [28, 37]}, {"id_str": "3111250452", "name": "ASICS Tennis", "screen_name": "ASICSTennis", "indices": [38, 50]}, {"id_str": "30017071", "name": "BNP Paribas Open", "screen_name": "BNPPARIBASOPEN", "indices": [51, 66]}, {"id_str": "64391043", "name": "Tecnifibre", "screen_name": "tecnifibre", "indices": [67, 78]}], "urls": [], "hashtags": [{"indices": [89, 105], "text": "MentalHealthDay"}], "symbols": []}, "favorite_count": 1, "favorited": false, "full_text": "@iga_swiatek @WTA @XiaomiPL @GrupaPZU @ASICSTennis @BNPPARIBASOPEN @tecnifibre Yes \ud83d\ude4f\ud83c\udffb.   #MentalHealthDay is every day", "in_reply_to_screen_name": "iga_swiatek", "in_reply_to_status_id_str": "1447348840164564994", "in_reply_to_user_id_str": "1087289365544534016", "is_quote_status": false, "lang": "en", "quote_count": 0, "reply_count": 0, "retweet_count": 0, "retweeted": false, "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "user_id_str": "2752252901", "id_str": "1447350197730701313"}}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:36.575893+02:00", "raw_value": {"__typename": "Tweet", "rest_id": "1447350300441038852", "has_birdwatch_notes": false, "core": {"user_results": {"result": {"__typename": "User", "id": "VXNlcjoxNDczMTM3MzQ4", "rest_id": "1473137348", "affiliates_highlighted_label": {}, "legacy": {"created_at": "Fri May 31 21:33:12 +0000 2013", "default_profile": false, "default_profile_image": false, "description": "filmy, ksi\u0105\u017cki, podr\u00f3\u017ce i seks", "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "link.coztymseksemapp.pl/mobile/aplikac\u2026", "expanded_url": "https://link.coztymseksemapp.pl/mobile/aplikacja", "url": "https://t.co/TGL36avu4Y", "indices": [0, 23]}]}}, "fast_followers_count": 0, "favourites_count": 19083, "followers_count": 25593, "friends_count": 274, "has_custom_timelines": true, "is_translator": false, "listed_count": 30, "location": "W \u015bwiecie \u2665", "media_count": 2223, "name": "Kasia Koczu\u0142ap (ona/jej)", "normal_followers_count": 25593, "pinned_tweet_ids_str": ["1170704116001251330"], "profile_banner_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 99.26, "rgb": {"blue": 242, "green": 242, "red": 242}}, {"percentage": 0.6, "rgb": {"blue": 120, "green": 120, "red": 120}}]}}}}, "profile_banner_url": "https://pbs.twimg.com/profile_banners/1473137348/1610487199", "profile_image_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 80.38, "rgb": {"blue": 130, "green": 142, "red": 185}}, {"percentage": 8.55, "rgb": {"blue": 114, "green": 126, "red": 189}}, {"percentage": 7.3, "rgb": {"blue": 49, "green": 58, "red": 69}}, {"percentage": 2.75, "rgb": {"blue": 85, "green": 106, "red": 149}}, {"percentage": 0.37, "rgb": {"blue": 192, "green": 192, "red": 208}}]}}}}, "profile_image_url_https": "https://pbs.twimg.com/profile_images/1357440766692499458/BclTrxBj_normal.jpg", "profile_interstitial_type": "", "protected": false, "screen_name": "KasiaKoczulap", "statuses_count": 30621, "translator_type": "regular", "url": "https://t.co/TGL36avu4Y", "verified": false, "withheld_in_countries": []}, "super_follow_eligible": false, "super_followed_by": false, "super_following": false}}}, "legacy": {"created_at": "Sun Oct 10 23:56:16 +0000 2021", "conversation_id_str": "1447348840164564994", "display_text_range": [79, 355], "entities": {"user_mentions": [{"id_str": "1087289365544534016", "name": "Iga \u015awi\u0105tek", "screen_name": "iga_swiatek", "indices": [0, 12]}, {"id_str": "17158140", "name": "wta", "screen_name": "WTA", "indices": [13, 17]}, {"id_str": "1252575285293260800", "name": "Xiaomi Polska", "screen_name": "XiaomiPL", "indices": [18, 27]}, {"id_str": "603617274", "name": "Grupa PZU", "screen_name": "GrupaPZU", "indices": [28, 37]}, {"id_str": "3111250452", "name": "ASICS Tennis", "screen_name": "ASICSTennis", "indices": [38, 50]}, {"id_str": "30017071", "name": "BNP Paribas Open", "screen_name": "BNPPARIBASOPEN", "indices": [51, 66]}, {"id_str": "64391043", "name": "Tecnifibre", "screen_name": "tecnifibre", "indices": [67, 78]}, {"id_str": "1404544808039878656", "name": "Fundacja Dajemy Dzieciom Si\u0142\u0119", "screen_name": "DajemySile", "indices": [88, 99]}], "urls": [], "hashtags": [], "symbols": []}, "favorite_count": 288, "favorited": false, "full_text": "@iga_swiatek @WTA @XiaomiPL @GrupaPZU @ASICSTennis @BNPPARIBASOPEN @tecnifibre Fundacja @DajemySile nie dosta\u0142a rz\u0105dowego wsparcia na telefon zaufania dla dzieci i m\u0142odzie\u017cy \ud83d\udc94 potrzebuj\u0105 pomocy, bo wykonuj\u0105 niesamowit\u0105 prac\u0119 dla dzieciak\u00f3w, kt\u00f3re pozostawione s\u0105 same sobie z problemami, a jak wiemy polska psychiatria dzieci i m\u0142odzie\u017cy jest w rozsypce \ud83d\ude14", "in_reply_to_screen_name": "iga_swiatek", "in_reply_to_status_id_str": "1447348840164564994", "in_reply_to_user_id_str": "1087289365544534016", "is_quote_status": false, "lang": "pl", "quote_count": 0, "reply_count": 3, "retweet_count": 5, "retweeted": false, "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "user_id_str": "1473137348", "id_str": "1447350300441038852"}}}
is_cursor True last_scrapped_zero False
need_guest_token True
run request RequestDetails(http_method=<HttpMethod.GET: 1>, url='https://twitter.com/i/api/graphql/kUnCMgMYZCR8GyRZz76IQg/TweetDetail', headers={'Authorization': 'Bearer AAAAAAAAAAAAAAAAAAAAANRILgAAAAAAnNwIzUejRCOuH5E6I8xnZz4puTs%3D1Zv7ttfk8LF81IUq16cHjhLTvJu4FA33AGWWjCpTnA', 'x-guest-token': '1448607906950168577'}, params={'variables': '{"focalTweetId": "1447348840164564994", "with_rux_injections": true, "includePromotedContent": true, "withCommunity": true, "withTweetQuoteCount": true, "withBirdwatchNotes": true, "withSuperFollowsUserFields": true, "withUserResults": true, "withBirdwatchPivots": true, "withReactionsMetadata": true, "withReactionsPerspective": true, "withSuperFollowsTweetFields": true, "withVoice": true, "cursor": "kgAAAPAWHBn2D4LAo5XE1YKWKIaAqfXvp4KWKILAvYW9v4KWKIzAubW-rxsA4MC58dXMgpYoiICzxduxJADxEYCy6bKmgpYogICz0cGRgpYohMCyoeSYgpYoioC5_e7BSABBvt3ylRIAQbL1v7lIAEC-1YvCSADwCcC-tcHbgpYolMC9xZvTgpYoJQISFQ4AAA"}'}, timeout=20)
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:37.079987+02:00", "raw_value": {"__typename": "Tweet", "rest_id": "1447350436437106688", "has_birdwatch_notes": false, "core": {"user_results": {"result": {"__typename": "User", "id": "VXNlcjo2NDAwMzQ0Nw==", "rest_id": "64003447", "affiliates_highlighted_label": {}, "legacy": {"created_at": "Sat Aug 08 17:21:30 +0000 2009", "default_profile": false, "default_profile_image": false, "description": "so false worstie \ud83d\ude0cTraductora ingl\u00e9s/portugu\u00e9s-espa\u00f1ol", "entities": {"description": {"urls": []}}, "fast_followers_count": 0, "favourites_count": 15426, "followers_count": 93, "friends_count": 200, "has_custom_timelines": true, "is_translator": false, "listed_count": 1, "location": "", "media_count": 152, "name": "lucia wiesse", "normal_followers_count": 93, "pinned_tweet_ids_str": ["1103865288523636737"], "profile_banner_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 55.81, "rgb": {"blue": 85, "green": 86, "red": 64}}, {"percentage": 22.02, "rgb": {"blue": 214, "green": 208, "red": 201}}, {"percentage": 12.81, "rgb": {"blue": 124, "green": 147, "red": 129}}, {"percentage": 2.29, "rgb": {"blue": 204, "green": 172, "red": 130}}, {"percentage": 0.96, "rgb": {"blue": 168, "green": 190, "red": 209}}]}}}}, "profile_banner_url": "https://pbs.twimg.com/profile_banners/64003447/1627346029", "profile_image_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 64.78, "rgb": {"blue": 197, "green": 197, "red": 197}}, {"percentage": 26.06, "rgb": {"blue": 20, "green": 20, "red": 20}}]}}}}, "profile_image_url_https": "https://pbs.twimg.com/profile_images/1422345191772590084/NLAXwa4__normal.jpg", "profile_interstitial_type": "", "protected": false, "screen_name": "LuciaWiesse", "statuses_count": 5057, "translator_type": "none", "verified": false, "withheld_in_countries": []}, "super_follow_eligible": false, "super_followed_by": false, "super_following": false}}}, "legacy": {"created_at": "Sun Oct 10 23:56:49 +0000 2021", "conversation_id_str": "1447348840164564994", "display_text_range": [79, 93], "entities": {"user_mentions": [{"id_str": "1087289365544534016", "name": "Iga \u015awi\u0105tek", "screen_name": "iga_swiatek", "indices": [0, 12]}, {"id_str": "17158140", "name": "wta", "screen_name": "WTA", "indices": [13, 17]}, {"id_str": "1252575285293260800", "name": "Xiaomi Polska", "screen_name": "XiaomiPL", "indices": [18, 27]}, {"id_str": "603617274", "name": "Grupa PZU", "screen_name": "GrupaPZU", "indices": [28, 37]}, {"id_str": "3111250452", "name": "ASICS Tennis", "screen_name": "ASICSTennis", "indices": [38, 50]}, {"id_str": "30017071", "name": "BNP Paribas Open", "screen_name": "BNPPARIBASOPEN", "indices": [51, 66]}, {"id_str": "64391043", "name": "Tecnifibre", "screen_name": "tecnifibre", "indices": [67, 78]}], "urls": [], "hashtags": [], "symbols": []}, "favorite_count": 0, "favorited": false, "full_text": "@iga_swiatek @WTA @XiaomiPL @GrupaPZU @ASICSTennis @BNPPARIBASOPEN @tecnifibre tqmmm Iga \u2764\ufe0f\u2764\ufe0f", "in_reply_to_screen_name": "iga_swiatek", "in_reply_to_status_id_str": "1447348840164564994", "in_reply_to_user_id_str": "1087289365544534016", "is_quote_status": false, "lang": "es", "quote_count": 0, "reply_count": 0, "retweet_count": 0, "retweeted": false, "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "user_id_str": "64003447", "id_str": "1447350436437106688"}}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:37.080242+02:00", "raw_value": {"__typename": "Tweet", "rest_id": "1447350739051950084", "has_birdwatch_notes": false, "core": {"user_results": {"result": {"__typename": "User", "id": "VXNlcjoxMjgzMTYyMTI3MTc2NTUyNDUz", "rest_id": "1283162127176552453", "affiliates_highlighted_label": {}, "legacy": {"created_at": "Tue Jul 14 22:12:19 +0000 2020", "default_profile": true, "default_profile_image": false, "description": "WPiA UW. Tenisista i rowerzysta pod\u0142ego sortu. Morda zdradziecka. Kobiety g\u00f3r\u0105\u26a1\ufe0f. Stare konto, za\u0142. 2010, znikn\u0119\u0142o.", "entities": {"description": {"urls": []}}, "fast_followers_count": 0, "favourites_count": 7379, "followers_count": 2359, "friends_count": 3155, "has_custom_timelines": false, "is_translator": false, "listed_count": 1, "location": "Warszawa, Polska", "media_count": 8, "name": "W.Prus. - ym2dc9 \ud83c\uddf5\ud83c\uddf1\ud83c\uddea\ud83c\uddfa", "normal_followers_count": 2359, "pinned_tweet_ids_str": [], "profile_banner_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 49.14, "rgb": {"blue": 33, "green": 31, "red": 30}}, {"percentage": 38.58, "rgb": {"blue": 211, "green": 203, "red": 203}}, {"percentage": 2.08, "rgb": {"blue": 42, "green": 73, "red": 80}}, {"percentage": 1.23, "rgb": {"blue": 80, "green": 133, "red": 145}}, {"percentage": 0.37, "rgb": {"blue": 40, "green": 149, "red": 162}}]}}}}, "profile_banner_url": "https://pbs.twimg.com/profile_banners/1283162127176552453/1594765502", "profile_image_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 48.1, "rgb": {"blue": 41, "green": 28, "red": 24}}, {"percentage": 12.28, "rgb": {"blue": 41, "green": 101, "red": 75}}, {"percentage": 12.27, "rgb": {"blue": 231, "green": 236, "red": 235}}, {"percentage": 4.29, "rgb": {"blue": 87, "green": 157, "red": 137}}, {"percentage": 4.05, "rgb": {"blue": 37, "green": 44, "red": 53}}]}}}}, "profile_image_url_https": "https://pbs.twimg.com/profile_images/1288254846206980098/hj2tevFz_normal.jpg", "profile_interstitial_type": "", "protected": false, "screen_name": "wacaw15654953", "statuses_count": 8710, "translator_type": "none", "verified": false, "withheld_in_countries": []}, "super_follow_eligible": false, "super_followed_by": false, "super_following": false}}}, "legacy": {"created_at": "Sun Oct 10 23:58:01 +0000 2021", "conversation_id_str": "1447348840164564994", "display_text_range": [79, 124], "entities": {"user_mentions": [{"id_str": "1087289365544534016", "name": "Iga \u015awi\u0105tek", "screen_name": "iga_swiatek", "indices": [0, 12]}, {"id_str": "17158140", "name": "wta", "screen_name": "WTA", "indices": [13, 17]}, {"id_str": "1252575285293260800", "name": "Xiaomi Polska", "screen_name": "XiaomiPL", "indices": [18, 27]}, {"id_str": "603617274", "name": "Grupa PZU", "screen_name": "GrupaPZU", "indices": [28, 37]}, {"id_str": "3111250452", "name": "ASICS Tennis", "screen_name": "ASICSTennis", "indices": [38, 50]}, {"id_str": "30017071", "name": "BNP Paribas Open", "screen_name": "BNPPARIBASOPEN", "indices": [51, 66]}, {"id_str": "64391043", "name": "Tecnifibre", "screen_name": "tecnifibre", "indices": [67, 78]}], "urls": [], "hashtags": [], "symbols": []}, "favorite_count": 1, "favorited": false, "full_text": "@iga_swiatek @WTA @XiaomiPL @GrupaPZU @ASICSTennis @BNPPARIBASOPEN @tecnifibre Pani Igo, chyl\u0119 czo\u0142a w wielkim szacunku!\ud83d\udc4d\ud83c\udf40\ud83c\udf3a\ud83d\udc4f", "in_reply_to_screen_name": "iga_swiatek", "in_reply_to_status_id_str": "1447348840164564994", "in_reply_to_user_id_str": "1087289365544534016", "is_quote_status": false, "lang": "pl", "quote_count": 0, "reply_count": 0, "retweet_count": 0, "retweeted": false, "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "user_id_str": "1283162127176552453", "id_str": "1447350739051950084"}}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:37.080438+02:00", "raw_value": {"__typename": "Tweet", "rest_id": "1447350808614477826", "has_birdwatch_notes": false, "core": {"user_results": {"result": {"__typename": "User", "id": "VXNlcjo5NTE4ODU2OTk3MzI3MDUyODE=", "rest_id": "951885699732705281", "affiliates_highlighted_label": {}, "legacy": {"created_at": "Fri Jan 12 18:36:50 +0000 2018", "default_profile": false, "default_profile_image": false, "description": "Used to be a UEFA B Licensed Coach but lost love for the game \u2022 \ud83c\uddf5\ud83c\uddf1 \u271e", "entities": {"description": {"urls": []}}, "fast_followers_count": 0, "favourites_count": 231401, "followers_count": 3000, "friends_count": 714, "has_custom_timelines": true, "is_translator": false, "listed_count": 9, "location": "North West, England", "media_count": 7307, "name": "Micha\u0142", "normal_followers_count": 3000, "pinned_tweet_ids_str": ["1286059108622368771"], "profile_banner_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 86.54, "rgb": {"blue": 22, "green": 22, "red": 22}}, {"percentage": 12.32, "rgb": {"blue": 119, "green": 119, "red": 125}}, {"percentage": 0.84, "rgb": {"blue": 196, "green": 196, "red": 196}}, {"percentage": 0.24, "rgb": {"blue": 127, "green": 118, "red": 108}}]}}}}, "profile_banner_url": "https://pbs.twimg.com/profile_banners/951885699732705281/1608246832", "profile_image_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 72.94, "rgb": {"blue": 14, "green": 14, "red": 28}}, {"percentage": 12.71, "rgb": {"blue": 23, "green": 32, "red": 90}}, {"percentage": 10.95, "rgb": {"blue": 233, "green": 238, "red": 245}}, {"percentage": 2.81, "rgb": {"blue": 93, "green": 113, "red": 155}}, {"percentage": 0.19, "rgb": {"blue": 141, "green": 180, "red": 225}}]}}}}, "profile_image_url_https": "https://pbs.twimg.com/profile_images/1448334687026487309/wD4PXPrh_normal.jpg", "profile_interstitial_type": "", "protected": false, "screen_name": "MichalT_03", "statuses_count": 48806, "translator_type": "none", "verified": false, "withheld_in_countries": []}, "super_follow_eligible": false, "super_followed_by": false, "super_following": false}}}, "legacy": {"created_at": "Sun Oct 10 23:58:17 +0000 2021", "conversation_id_str": "1447348840164564994", "display_text_range": [79, 81], "entities": {"user_mentions": [{"id_str": "1087289365544534016", "name": "Iga \u015awi\u0105tek", "screen_name": "iga_swiatek", "indices": [0, 12]}, {"id_str": "17158140", "name": "wta", "screen_name": "WTA", "indices": [13, 17]}, {"id_str": "1252575285293260800", "name": "Xiaomi Polska", "screen_name": "XiaomiPL", "indices": [18, 27]}, {"id_str": "603617274", "name": "Grupa PZU", "screen_name": "GrupaPZU", "indices": [28, 37]}, {"id_str": "3111250452", "name": "ASICS Tennis", "screen_name": "ASICSTennis", "indices": [38, 50]}, {"id_str": "30017071", "name": "BNP Paribas Open", "screen_name": "BNPPARIBASOPEN", "indices": [51, 66]}, {"id_str": "64391043", "name": "Tecnifibre", "screen_name": "tecnifibre", "indices": [67, 78]}], "urls": [], "hashtags": [], "symbols": []}, "favorite_count": 0, "favorited": false, "full_text": "@iga_swiatek @WTA @XiaomiPL @GrupaPZU @ASICSTennis @BNPPARIBASOPEN @tecnifibre \ud83d\udc4f\ud83c\udffc", "in_reply_to_screen_name": "iga_swiatek", "in_reply_to_status_id_str": "1447348840164564994", "in_reply_to_user_id_str": "1087289365544534016", "is_quote_status": false, "lang": "und", "quote_count": 0, "reply_count": 0, "retweet_count": 0, "retweeted": false, "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "user_id_str": "951885699732705281", "id_str": "1447350808614477826"}}}
is_cursor True last_scrapped_zero False
need_guest_token True
run request RequestDetails(http_method=<HttpMethod.GET: 1>, url='https://twitter.com/i/api/graphql/kUnCMgMYZCR8GyRZz76IQg/TweetDetail', headers={'Authorization': 'Bearer AAAAAAAAAAAAAAAAAAAAANRILgAAAAAAnNwIzUejRCOuH5E6I8xnZz4puTs%3D1Zv7ttfk8LF81IUq16cHjhLTvJu4FA33AGWWjCpTnA', 'x-guest-token': '1448607906950168577'}, params={'variables': '{"focalTweetId": "1447348840164564994", "with_rux_injections": true, "includePromotedContent": true, "withCommunity": true, "withTweetQuoteCount": true, "withBirdwatchNotes": true, "withSuperFollowsUserFields": true, "withUserResults": true, "withBirdwatchPivots": true, "withReactionsMetadata": true, "withReactionsPerspective": true, "withSuperFollowsTweetFields": true, "withVoice": true, "cursor": "rQAAAPENHBn2EoSAuc2L-YKWKILAo5XE1YKWKIaAqfXvpxIA8Ae9hb2_gpYoiMC5qYX1gpYojMC5tb6vJADgwLnx1cyCliiAgLnVtuMkAFCAs8XbsTYAUYCy6bKmGwDxB7PRwZGCliiEwLKh5JiCliiKgLn97sFaAEG-3fKVEgBBsvW_uVEAQb7Vi8JsAPAIvrXB24KWKJTAvcWb04KWKCUCEhUOAAA"}'}, timeout=20)
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:37.695280+02:00", "raw_value": {"__typename": "Tweet", "rest_id": "1447350893058330624", "has_birdwatch_notes": false, "core": {"user_results": {"result": {"__typename": "User", "id": "VXNlcjozMzIxMTQ0MjU1", "rest_id": "3321144255", "affiliates_highlighted_label": {}, "legacy": {"created_at": "Fri Jun 12 16:01:21 +0000 2015", "default_profile": false, "default_profile_image": false, "description": "", "entities": {"description": {"urls": []}}, "fast_followers_count": 0, "favourites_count": 15719, "followers_count": 247, "friends_count": 838, "has_custom_timelines": false, "is_translator": false, "listed_count": 0, "location": "\u015al\u0105skie, Polska", "media_count": 25, "name": "Grzegorz Hechmann", "normal_followers_count": 247, "pinned_tweet_ids_str": [], "profile_banner_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 45.82, "rgb": {"blue": 219, "green": 223, "red": 227}}, {"percentage": 39.53, "rgb": {"blue": 106, "green": 83, "red": 71}}, {"percentage": 10.81, "rgb": {"blue": 192, "green": 237, "red": 254}}, {"percentage": 2.45, "rgb": {"blue": 170, "green": 152, "red": 154}}, {"percentage": 1.18, "rgb": {"blue": 229, "green": 226, "red": 219}}]}}}}, "profile_banner_url": "https://pbs.twimg.com/profile_banners/3321144255/1489810445", "profile_image_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 41.93, "rgb": {"blue": 51, "green": 69, "red": 99}}, {"percentage": 17.08, "rgb": {"blue": 173, "green": 165, "red": 163}}, {"percentage": 12.51, "rgb": {"blue": 102, "green": 90, "red": 82}}, {"percentage": 9.94, "rgb": {"blue": 96, "green": 125, "red": 149}}, {"percentage": 9.82, "rgb": {"blue": 80, "green": 104, "red": 178}}]}}}}, "profile_image_url_https": "https://pbs.twimg.com/profile_images/865047404919353344/0OlONcX9_normal.jpg", "profile_interstitial_type": "", "protected": false, "screen_name": "GHechmann", "statuses_count": 5819, "translator_type": "none", "verified": false, "withheld_in_countries": []}, "super_follow_eligible": false, "super_followed_by": false, "super_following": false}}}, "legacy": {"created_at": "Sun Oct 10 23:58:38 +0000 2021", "conversation_id_str": "1447348840164564994", "display_text_range": [79, 102], "entities": {"user_mentions": [{"id_str": "1087289365544534016", "name": "Iga \u015awi\u0105tek", "screen_name": "iga_swiatek", "indices": [0, 12]}, {"id_str": "17158140", "name": "wta", "screen_name": "WTA", "indices": [13, 17]}, {"id_str": "1252575285293260800", "name": "Xiaomi Polska", "screen_name": "XiaomiPL", "indices": [18, 27]}, {"id_str": "603617274", "name": "Grupa PZU", "screen_name": "GrupaPZU", "indices": [28, 37]}, {"id_str": "3111250452", "name": "ASICS Tennis", "screen_name": "ASICSTennis", "indices": [38, 50]}, {"id_str": "30017071", "name": "BNP Paribas Open", "screen_name": "BNPPARIBASOPEN", "indices": [51, 66]}, {"id_str": "64391043", "name": "Tecnifibre", "screen_name": "tecnifibre", "indices": [67, 78]}], "urls": [], "hashtags": [], "symbols": []}, "favorite_count": 0, "favorited": false, "full_text": "@iga_swiatek @WTA @XiaomiPL @GrupaPZU @ASICSTennis @BNPPARIBASOPEN @tecnifibre \ud83d\udc4d\ud83c\udffb\ud83d\udc4f\ud83d\udc4f\ud83d\udc4f\ud83d\udc4f\ud83d\udc4f\ud83d\udc4f\ud83d\udc4f\ud83d\udc4f\ud83d\udc4f\ud83d\udc4f\ud83d\udc4f\ud83d\udc4f\ud83d\udc4f\ud83d\udc4f\ud83d\udc4f\ud83d\udc4f\ud83d\udc4f\ud83d\udc4f\ud83d\udc4f\ud83d\udc4f\ud83d\udc4f", "in_reply_to_screen_name": "iga_swiatek", "in_reply_to_status_id_str": "1447348840164564994", "in_reply_to_user_id_str": "1087289365544534016", "is_quote_status": false, "lang": "und", "quote_count": 0, "reply_count": 0, "retweet_count": 0, "retweeted": false, "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "user_id_str": "3321144255", "id_str": "1447350893058330624"}}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:37.695553+02:00", "raw_value": {"__typename": "Tweet", "rest_id": "1447351307136872450", "has_birdwatch_notes": false, "core": {"user_results": {"result": {"__typename": "User", "id": "VXNlcjoxOTI0MTU5NzA=", "rest_id": "192415970", "affiliates_highlighted_label": {}, "legacy": {"created_at": "Sun Sep 19 02:35:32 +0000 2010", "default_profile": false, "default_profile_image": false, "description": "????", "entities": {"description": {"urls": []}}, "fast_followers_count": 0, "favourites_count": 5676, "followers_count": 360, "friends_count": 290, "has_custom_timelines": true, "is_translator": false, "listed_count": 0, "location": "", "media_count": 1465, "name": "alejandra", "normal_followers_count": 360, "pinned_tweet_ids_str": [], "profile_banner_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 75.76, "rgb": {"blue": 195, "green": 174, "red": 96}}, {"percentage": 18.39, "rgb": {"blue": 172, "green": 158, "red": 36}}, {"percentage": 5.09, "rgb": {"blue": 215, "green": 175, "red": 147}}, {"percentage": 0.33, "rgb": {"blue": 159, "green": 125, "red": 43}}]}}}}, "profile_banner_url": "https://pbs.twimg.com/profile_banners/192415970/1564256328", "profile_image_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 17.8, "rgb": {"blue": 17, "green": 41, "red": 48}}, {"percentage": 8.46, "rgb": {"blue": 88, "green": 26, "red": 76}}, {"percentage": 7.9, "rgb": {"blue": 15, "green": 75, "red": 163}}, {"percentage": 7.05, "rgb": {"blue": 15, "green": 70, "red": 107}}, {"percentage": 6.88, "rgb": {"blue": 55, "green": 44, "red": 55}}]}}}}, "profile_image_url_https": "https://pbs.twimg.com/profile_images/1413293939818475521/AWDAxD_I_normal.jpg", "profile_interstitial_type": "", "protected": false, "screen_name": "ladm___", "statuses_count": 73892, "translator_type": "none", "verified": false, "withheld_in_countries": []}, "super_follow_eligible": false, "super_followed_by": false, "super_following": false}}}, "legacy": {"created_at": "Mon Oct 11 00:00:16 +0000 2021", "conversation_id_str": "1447348840164564994", "display_text_range": [79, 84], "entities": {"user_mentions": [{"id_str": "1087289365544534016", "name": "Iga \u015awi\u0105tek", "screen_name": "iga_swiatek", "indices": [0, 12]}, {"id_str": "17158140", "name": "wta", "screen_name": "WTA", "indices": [13, 17]}, {"id_str": "1252575285293260800", "name": "Xiaomi Polska", "screen_name": "XiaomiPL", "indices": [18, 27]}, {"id_str": "603617274", "name": "Grupa PZU", "screen_name": "GrupaPZU", "indices": [28, 37]}, {"id_str": "3111250452", "name": "ASICS Tennis", "screen_name": "ASICSTennis", "indices": [38, 50]}, {"id_str": "30017071", "name": "BNP Paribas Open", "screen_name": "BNPPARIBASOPEN", "indices": [51, 66]}, {"id_str": "64391043", "name": "Tecnifibre", "screen_name": "tecnifibre", "indices": [67, 78]}], "urls": [], "hashtags": [], "symbols": []}, "favorite_count": 0, "favorited": false, "full_text": "@iga_swiatek @WTA @XiaomiPL @GrupaPZU @ASICSTennis @BNPPARIBASOPEN @tecnifibre reina", "in_reply_to_screen_name": "iga_swiatek", "in_reply_to_status_id_str": "1447348840164564994", "in_reply_to_user_id_str": "1087289365544534016", "is_quote_status": false, "lang": "es", "quote_count": 0, "reply_count": 0, "retweet_count": 0, "retweeted": false, "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "user_id_str": "192415970", "id_str": "1447351307136872450"}}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:37.695780+02:00", "raw_value": {"__typename": "Tweet", "rest_id": "1447351912832008199", "has_birdwatch_notes": false, "core": {"user_results": {"result": {"__typename": "User", "id": "VXNlcjoxNDQ1ODI1MDY2NTEyNTY4MzIy", "rest_id": "1445825066512568322", "affiliates_highlighted_label": {}, "legacy": {"created_at": "Wed Oct 06 18:55:48 +0000 2021", "default_profile": true, "default_profile_image": false, "description": "I believe in Elena Rybakina supremacy             she/her \u2022 18yo \u2022 \ud83c\uddea\ud83c\uddf8/\ud83c\uddec\ud83c\udde7 \u2022 LG{B}T", "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "shineshapo.carrd.co", "expanded_url": "https://shineshapo.carrd.co/", "url": "https://t.co/SjiTmrQXoB", "indices": [0, 23]}]}}, "fast_followers_count": 0, "favourites_count": 1979, "followers_count": 118, "friends_count": 171, "has_custom_timelines": true, "is_translator": false, "listed_count": 0, "location": "Uruguay", "media_count": 41, "name": "Julie", "normal_followers_count": 118, "pinned_tweet_ids_str": [], "profile_banner_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 80.78, "rgb": {"blue": 98, "green": 132, "red": 140}}, {"percentage": 13.48, "rgb": {"blue": 213, "green": 203, "red": 217}}, {"percentage": 2.74, "rgb": {"blue": 97, "green": 108, "red": 150}}, {"percentage": 0.67, "rgb": {"blue": 158, "green": 169, "red": 207}}, {"percentage": 0.49, "rgb": {"blue": 60, "green": 61, "red": 65}}]}}}}, "profile_banner_url": "https://pbs.twimg.com/profile_banners/1445825066512568322/1633547009", "profile_image_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 36.77, "rgb": {"blue": 120, "green": 161, "red": 214}}, {"percentage": 33.76, "rgb": {"blue": 61, "green": 82, "red": 89}}, {"percentage": 11.65, "rgb": {"blue": 249, "green": 247, "red": 247}}, {"percentage": 5.04, "rgb": {"blue": 67, "green": 112, "red": 190}}, {"percentage": 3.47, "rgb": {"blue": 15, "green": 30, "red": 244}}]}}}}, "profile_image_url_https": "https://pbs.twimg.com/profile_images/1445825234049720325/OMGjfmcX_normal.jpg", "profile_interstitial_type": "", "protected": false, "screen_name": "shapovapova", "statuses_count": 233, "translator_type": "none", "url": "https://t.co/SjiTmrQXoB", "verified": false, "withheld_in_countries": []}, "super_follow_eligible": false, "super_followed_by": false, "super_following": false}}}, "legacy": {"created_at": "Mon Oct 11 00:02:41 +0000 2021", "conversation_id_str": "1447348840164564994", "display_text_range": [79, 106], "entities": {"user_mentions": [{"id_str": "1087289365544534016", "name": "Iga \u015awi\u0105tek", "screen_name": "iga_swiatek", "indices": [0, 12]}, {"id_str": "17158140", "name": "wta", "screen_name": "WTA", "indices": [13, 17]}, {"id_str": "1252575285293260800", "name": "Xiaomi Polska", "screen_name": "XiaomiPL", "indices": [18, 27]}, {"id_str": "603617274", "name": "Grupa PZU", "screen_name": "GrupaPZU", "indices": [28, 37]}, {"id_str": "3111250452", "name": "ASICS Tennis", "screen_name": "ASICSTennis", "indices": [38, 50]}, {"id_str": "30017071", "name": "BNP Paribas Open", "screen_name": "BNPPARIBASOPEN", "indices": [51, 66]}, {"id_str": "64391043", "name": "Tecnifibre", "screen_name": "tecnifibre", "indices": [67, 78]}], "urls": [], "hashtags": [], "symbols": []}, "favorite_count": 0, "favorited": false, "full_text": "@iga_swiatek @WTA @XiaomiPL @GrupaPZU @ASICSTennis @BNPPARIBASOPEN @tecnifibre You're amazing \ud83d\udc96 I love you", "in_reply_to_screen_name": "iga_swiatek", "in_reply_to_status_id_str": "1447348840164564994", "in_reply_to_user_id_str": "1087289365544534016", "is_quote_status": false, "lang": "en", "quote_count": 0, "reply_count": 0, "retweet_count": 0, "retweeted": false, "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "user_id_str": "1445825066512568322", "id_str": "1447351912832008199"}}}
is_cursor True last_scrapped_zero False
need_guest_token True
run request RequestDetails(http_method=<HttpMethod.GET: 1>, url='https://twitter.com/i/api/graphql/kUnCMgMYZCR8GyRZz76IQg/TweetDetail', headers={'Authorization': 'Bearer AAAAAAAAAAAAAAAAAAAAANRILgAAAAAAnNwIzUejRCOuH5E6I8xnZz4puTs%3D1Zv7ttfk8LF81IUq16cHjhLTvJu4FA33AGWWjCpTnA', 'x-guest-token': '1448607906950168577'}, params={'variables': '{"focalTweetId": "1447348840164564994", "with_rux_injections": true, "includePromotedContent": true, "withCommunity": true, "withTweetQuoteCount": true, "withBirdwatchNotes": true, "withSuperFollowsUserFields": true, "withUserResults": true, "withBirdwatchPivots": true, "withReactionsMetadata": true, "withReactionsPerspective": true, "withSuperFollowsTweetFields": true, "withVoice": true, "cursor": "yAAAAPAXHBn2FYSAuc2L-YKWKILAo5XE1YKWKIaAqfXvp4KWKITAufGNloMbAPAQvYW9v4KWKI6ArNWuuYOWKIjAuamF9YKWKIzAubW-rzYA8AjAufHVzIKWKICAudW244KWKIiAs8XbsVoAUYCy6bKmGwBBs9HBkVoA0LKh5JiCliiKgLn97sEbAFHAsOGA_ocAQb7d8pUbAEGy9b-5WgBAvtWLwlEA8AnAvrXB24KWKJTAvcWb04KWKCUCEhUOAAA"}'}, timeout=20)
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:38.141236+02:00", "raw_value": {"__typename": "Tweet", "rest_id": "1447352290361233410", "has_birdwatch_notes": false, "core": {"user_results": {"result": {"__typename": "User", "id": "VXNlcjoxNzIxMDU3NTc2", "rest_id": "1721057576", "affiliates_highlighted_label": {}, "legacy": {"created_at": "Mon Sep 02 03:33:55 +0000 2013", "default_profile": false, "default_profile_image": false, "description": "yo homie, that my briefcase?", "entities": {"description": {"urls": []}}, "fast_followers_count": 0, "favourites_count": 87861, "followers_count": 1063, "friends_count": 299, "has_custom_timelines": true, "is_translator": false, "listed_count": 15, "location": "21 | any pronouns", "media_count": 2358, "name": "\u263e birthday alex", "normal_followers_count": 1063, "pinned_tweet_ids_str": ["1053532731840192519"], "profile_banner_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 30.49, "rgb": {"blue": 3, "green": 18, "red": 95}}, {"percentage": 29.49, "rgb": {"blue": 1, "green": 3, "red": 24}}, {"percentage": 18.9, "rgb": {"blue": 16, "green": 88, "red": 237}}, {"percentage": 5.76, "rgb": {"blue": 4, "green": 8, "red": 60}}, {"percentage": 3.98, "rgb": {"blue": 253, "green": 254, "red": 254}}]}}}}, "profile_banner_url": "https://pbs.twimg.com/profile_banners/1721057576/1614941579", "profile_image_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 27.48, "rgb": {"blue": 3, "green": 2, "red": 5}}, {"percentage": 20.21, "rgb": {"blue": 6, "green": 12, "red": 90}}, {"percentage": 18.43, "rgb": {"blue": 255, "green": 255, "red": 255}}, {"percentage": 13.99, "rgb": {"blue": 10, "green": 81, "red": 235}}, {"percentage": 9.63, "rgb": {"blue": 10, "green": 22, "red": 144}}]}}}}, "profile_image_url_https": "https://pbs.twimg.com/profile_images/1367790231647256578/LI7uOcZ4_normal.jpg", "profile_interstitial_type": "", "protected": false, "screen_name": "acertainromnce", "statuses_count": 29629, "translator_type": "none", "verified": false, "withheld_in_countries": []}, "super_follow_eligible": false, "super_followed_by": false, "super_following": false}}}, "card": {"rest_id": "https://t.co/1p9iUZMr5f", "legacy": {"binding_values": [{"key": "thumbnail_image", "value": {"image_value": {"height": 141, "width": 141, "url": "https://pbs.twimg.com/card_img/1447202277823959042/bXGGEeyq?format=png&name=144x144_2"}, "type": "IMAGE"}}, {"key": "domain", "value": {"string_value": "www.beyondblue.org.au", "type": "STRING"}}, {"key": "thumbnail_image_large", "value": {"image_value": {"height": 141, "width": 141, "url": "https://pbs.twimg.com/card_img/1447202277823959042/bXGGEeyq?format=png&name=144x144_2"}, "type": "IMAGE"}}, {"key": "thumbnail_image_original", "value": {"image_value": {"height": 141, "width": 318, "url": "https://pbs.twimg.com/card_img/1447202277823959042/bXGGEeyq?format=png&name=orig"}, "type": "IMAGE"}}, {"key": "thumbnail_image_small", "value": {"image_value": {"height": 100, "width": 100, "url": "https://pbs.twimg.com/card_img/1447202277823959042/bXGGEeyq?format=png&name=100x100_2"}, "type": "IMAGE"}}, {"key": "thumbnail_image_x_large", "value": {"image_value": {"height": 141, "width": 318, "url": "https://pbs.twimg.com/card_img/1447202277823959042/bXGGEeyq?format=png&name=2048x2048_2_exp"}, "type": "IMAGE"}}, {"key": "vanity_url", "value": {"scribe_key": "vanity_url", "string_value": "beyondblue.org.au", "type": "STRING"}}, {"key": "title", "value": {"string_value": "Beyond Blue", "type": "STRING"}}, {"key": "card_url", "value": {"scribe_key": "card_url", "string_value": "https://t.co/1p9iUZMr5f", "type": "STRING"}}], "card_platform": {"platform": {"audience": {"name": "production"}, "device": {"name": "Swift", "version": "12"}}}, "name": "summary", "url": "https://t.co/1p9iUZMr5f", "user_refs": []}}, "legacy": {"created_at": "Mon Oct 11 00:04:11 +0000 2021", "conversation_id_str": "1447348840164564994", "display_text_range": [79, 341], "entities": {"user_mentions": [{"id_str": "1087289365544534016", "name": "Iga \u015awi\u0105tek", "screen_name": "iga_swiatek", "indices": [0, 12]}, {"id_str": "17158140", "name": "wta", "screen_name": "WTA", "indices": [13, 17]}, {"id_str": "1252575285293260800", "name": "Xiaomi Polska", "screen_name": "XiaomiPL", "indices": [18, 27]}, {"id_str": "603617274", "name": "Grupa PZU", "screen_name": "GrupaPZU", "indices": [28, 37]}, {"id_str": "3111250452", "name": "ASICS Tennis", "screen_name": "ASICSTennis", "indices": [38, 50]}, {"id_str": "30017071", "name": "BNP Paribas Open", "screen_name": "BNPPARIBASOPEN", "indices": [51, 66]}, {"id_str": "64391043", "name": "Tecnifibre", "screen_name": "tecnifibre", "indices": [67, 78]}], "urls": [{"display_url": "beyondblue.org.au/get-involved/m\u2026", "expanded_url": "https://www.beyondblue.org.au/get-involved/make-a-donation", "url": "https://t.co/1p9iUZMr5f", "indices": [167, 190]}], "hashtags": [], "symbols": []}, "favorite_count": 6, "favorited": false, "full_text": "@iga_swiatek @WTA @XiaomiPL @GrupaPZU @ASICSTennis @BNPPARIBASOPEN @tecnifibre beyond blue is an australian charity advocating for people with mental health issues. \n\nhttps://t.co/1p9iUZMr5f\n\nas melbourne (home of the AO) has been one of the most locked down cities in the world, mental health has worsened. This donation would mean so much!", "in_reply_to_screen_name": "iga_swiatek", "in_reply_to_status_id_str": "1447348840164564994", "in_reply_to_user_id_str": "1087289365544534016", "is_quote_status": false, "lang": "en", "possibly_sensitive": false, "possibly_sensitive_editable": true, "quote_count": 0, "reply_count": 0, "retweet_count": 1, "retweeted": false, "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "user_id_str": "1721057576", "id_str": "1447352290361233410"}}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:38.141486+02:00", "raw_value": {"__typename": "Tweet", "rest_id": "1447352565390315522", "has_birdwatch_notes": false, "core": {"user_results": {"result": {"__typename": "User", "id": "VXNlcjo5NjI2MDI5NjY2NTcyNDEwODg=", "rest_id": "962602966657241088", "affiliates_highlighted_label": {}, "legacy": {"created_at": "Sun Feb 11 08:23:26 +0000 2018", "default_profile": true, "default_profile_image": false, "description": "Socjaldemokrata, nie lubie pe\u0142o, pisu, psl. No i nie cierpie pedofilii w ko\u015bciele katolickim", "entities": {"description": {"urls": []}}, "fast_followers_count": 0, "favourites_count": 8424, "followers_count": 87, "friends_count": 548, "has_custom_timelines": true, "is_translator": false, "listed_count": 3, "location": "", "media_count": 1981, "name": "Piotr Ladra", "normal_followers_count": 87, "pinned_tweet_ids_str": [], "profile_image_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 49.07, "rgb": {"blue": 24, "green": 26, "red": 26}}, {"percentage": 46.25, "rgb": {"blue": 229, "green": 229, "red": 228}}, {"percentage": 5.39, "rgb": {"blue": 112, "green": 118, "red": 123}}]}}}}, "profile_image_url_https": "https://pbs.twimg.com/profile_images/1018427906048094209/xPRnKxeM_normal.jpg", "profile_interstitial_type": "", "protected": false, "screen_name": "PiotrLadra", "statuses_count": 11217, "translator_type": "none", "verified": false, "withheld_in_countries": []}, "super_follow_eligible": false, "super_followed_by": false, "super_following": false}}}, "legacy": {"created_at": "Mon Oct 11 00:05:16 +0000 2021", "conversation_id_str": "1447348840164564994", "display_text_range": [79, 88], "entities": {"user_mentions": [{"id_str": "1087289365544534016", "name": "Iga \u015awi\u0105tek", "screen_name": "iga_swiatek", "indices": [0, 12]}, {"id_str": "17158140", "name": "wta", "screen_name": "WTA", "indices": [13, 17]}, {"id_str": "1252575285293260800", "name": "Xiaomi Polska", "screen_name": "XiaomiPL", "indices": [18, 27]}, {"id_str": "603617274", "name": "Grupa PZU", "screen_name": "GrupaPZU", "indices": [28, 37]}, {"id_str": "3111250452", "name": "ASICS Tennis", "screen_name": "ASICSTennis", "indices": [38, 50]}, {"id_str": "30017071", "name": "BNP Paribas Open", "screen_name": "BNPPARIBASOPEN", "indices": [51, 66]}, {"id_str": "64391043", "name": "Tecnifibre", "screen_name": "tecnifibre", "indices": [67, 78]}], "urls": [], "hashtags": [], "symbols": []}, "favorite_count": 0, "favorited": false, "full_text": "@iga_swiatek @WTA @XiaomiPL @GrupaPZU @ASICSTennis @BNPPARIBASOPEN @tecnifibre Verry god", "in_reply_to_screen_name": "iga_swiatek", "in_reply_to_status_id_str": "1447348840164564994", "in_reply_to_user_id_str": "1087289365544534016", "is_quote_status": false, "lang": "en", "quote_count": 0, "reply_count": 0, "retweet_count": 0, "retweeted": false, "source": "<a href=\"https://mobile.twitter.com\" rel=\"nofollow\">Twitter Web App</a>", "user_id_str": "962602966657241088", "id_str": "1447352565390315522"}}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:38.141699+02:00", "raw_value": {"__typename": "Tweet", "rest_id": "1447353024460910593", "has_birdwatch_notes": false, "core": {"user_results": {"result": {"__typename": "User", "id": "VXNlcjoyNjc2NjczNjU=", "rest_id": "267667365", "affiliates_highlighted_label": {}, "legacy": {"created_at": "Thu Mar 17 10:01:02 +0000 2011", "default_profile": true, "default_profile_image": false, "description": "force of nature \ud83e\udd81 | \u0915\u091f\u094d\u091f\u0930 \u0939\u093f\u0928\u094d\u0926\u0942 \ud83d\udea9 | gujarati | politics | global | tennis | nadal | mumbai indians | food | restaurants | cinema | old school | learner |", "entities": {"description": {"urls": []}}, "fast_followers_count": 0, "favourites_count": 42889, "followers_count": 271, "friends_count": 2544, "has_custom_timelines": true, "is_translator": false, "listed_count": 9, "location": "Australia", "media_count": 331, "name": "Shrey Patel | \u0930\u093e\u0937\u094d\u091f\u094d\u0930\u0935\u093e\u0926\u093f\u092f\u094b\u0902 \u0915\u094b \u092b\u0949\u0932\u094b \u092c\u0948\u0915 \ud83c\uddee\ud83c\uddf3", "normal_followers_count": 271, "pinned_tweet_ids_str": ["1208185558532386817"], "profile_banner_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 57.01, "rgb": {"blue": 200, "green": 211, "red": 225}}, {"percentage": 19.53, "rgb": {"blue": 64, "green": 68, "red": 75}}]}}}}, "profile_banner_url": "https://pbs.twimg.com/profile_banners/267667365/1631859473", "profile_image_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 51.84, "rgb": {"blue": 9, "green": 13, "red": 15}}, {"percentage": 12.29, "rgb": {"blue": 21, "green": 95, "red": 209}}, {"percentage": 7.87, "rgb": {"blue": 18, "green": 44, "red": 40}}, {"percentage": 7.09, "rgb": {"blue": 8, "green": 18, "red": 56}}, {"percentage": 4.08, "rgb": {"blue": 12, "green": 43, "red": 126}}]}}}}, "profile_image_url_https": "https://pbs.twimg.com/profile_images/1445074178919464960/Pk30fG5__normal.jpg", "profile_interstitial_type": "", "protected": false, "screen_name": "iShreyPatel", "statuses_count": 9411, "translator_type": "none", "verified": false, "withheld_in_countries": []}, "super_follow_eligible": false, "super_followed_by": false, "super_following": false}}}, "legacy": {"created_at": "Mon Oct 11 00:07:06 +0000 2021", "conversation_id_str": "1447348840164564994", "display_text_range": [79, 81], "entities": {"user_mentions": [{"id_str": "1087289365544534016", "name": "Iga \u015awi\u0105tek", "screen_name": "iga_swiatek", "indices": [0, 12]}, {"id_str": "17158140", "name": "wta", "screen_name": "WTA", "indices": [13, 17]}, {"id_str": "1252575285293260800", "name": "Xiaomi Polska", "screen_name": "XiaomiPL", "indices": [18, 27]}, {"id_str": "603617274", "name": "Grupa PZU", "screen_name": "GrupaPZU", "indices": [28, 37]}, {"id_str": "3111250452", "name": "ASICS Tennis", "screen_name": "ASICSTennis", "indices": [38, 50]}, {"id_str": "30017071", "name": "BNP Paribas Open", "screen_name": "BNPPARIBASOPEN", "indices": [51, 66]}, {"id_str": "64391043", "name": "Tecnifibre", "screen_name": "tecnifibre", "indices": [67, 78]}], "urls": [], "hashtags": [], "symbols": []}, "favorite_count": 0, "favorited": false, "full_text": "@iga_swiatek @WTA @XiaomiPL @GrupaPZU @ASICSTennis @BNPPARIBASOPEN @tecnifibre \u2764\ud83c\udfbe", "in_reply_to_screen_name": "iga_swiatek", "in_reply_to_status_id_str": "1447348840164564994", "in_reply_to_user_id_str": "1087289365544534016", "is_quote_status": false, "lang": "und", "quote_count": 0, "reply_count": 0, "retweet_count": 0, "retweeted": false, "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "user_id_str": "267667365", "id_str": "1447353024460910593"}}}
is_cursor True last_scrapped_zero False
need_guest_token True
run request RequestDetails(http_method=<HttpMethod.GET: 1>, url='https://twitter.com/i/api/graphql/kUnCMgMYZCR8GyRZz76IQg/TweetDetail', headers={'Authorization': 'Bearer AAAAAAAAAAAAAAAAAAAAANRILgAAAAAAnNwIzUejRCOuH5E6I8xnZz4puTs%3D1Zv7ttfk8LF81IUq16cHjhLTvJu4FA33AGWWjCpTnA', 'x-guest-token': '1448607906950168577'}, params={'variables': '{"focalTweetId": "1447348840164564994", "with_rux_injections": true, "includePromotedContent": true, "withCommunity": true, "withTweetQuoteCount": true, "withBirdwatchNotes": true, "withSuperFollowsUserFields": true, "withUserResults": true, "withBirdwatchPivots": true, "withReactionsMetadata": true, "withReactionsPerspective": true, "withSuperFollowsTweetFields": true, "withVoice": true, "cursor": "4wAAAPAXHBn2GISAuc2L-YKWKILAo5XE1YKWKIaAqfXvp4KWKITAuM2s34MJAFC58Y2WgyQAQr2Fvb8tAPAP-Yj6g5YojoCs1a65g5YoiMC5qYX1gpYojMC5tb6vSADwCMC58dXMgpYogIC51bbjgpYoiICzxduxPwBRgLLpsqYbAEGz0cGRbADRsqHkmIKWKIqAuf3uwRIA0aK9q8-DliiAwLDhgP51AEG-3fKVJABBsvW_uWMAQL7Vi8JaAPAJwL61wduCliiUwL3Fm9OCliglAhIVDgAA"}'}, timeout=20)
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:38.566609+02:00", "raw_value": {"__typename": "Tweet", "rest_id": "1447353275783782404", "has_birdwatch_notes": false, "core": {"user_results": {"result": {"__typename": "User", "id": "VXNlcjo0Njc4MjA5NTM=", "rest_id": "467820953", "affiliates_highlighted_label": {}, "legacy": {"created_at": "Wed Jan 18 21:51:20 +0000 2012", "default_profile": false, "default_profile_image": false, "description": "Lubi\u0119 analizowa\u0107, rozk\u0142ada\u0107 na czynniki pierwsze. Skromna tylko z zasady. Kocham mi\u0119cho, kaw\u0119, sport, zwierzaki i przyrod\u0119. Wychodz\u0119 po krakowsku na pole \ud83d\ude09", "entities": {"description": {"urls": []}}, "fast_followers_count": 0, "favourites_count": 3411, "followers_count": 57, "friends_count": 100, "has_custom_timelines": true, "is_translator": false, "listed_count": 0, "location": "Krak\u00f3w, Poland", "media_count": 159, "name": "Ania", "normal_followers_count": 57, "pinned_tweet_ids_str": ["1393935833598763010"], "profile_banner_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 33.09, "rgb": {"blue": 164, "green": 166, "red": 131}}, {"percentage": 16.5, "rgb": {"blue": 42, "green": 29, "red": 15}}, {"percentage": 7.72, "rgb": {"blue": 62, "green": 104, "red": 180}}, {"percentage": 5.29, "rgb": {"blue": 86, "green": 46, "red": 1}}, {"percentage": 4.69, "rgb": {"blue": 36, "green": 45, "red": 62}}]}}}}, "profile_banner_url": "https://pbs.twimg.com/profile_banners/467820953/1621772168", "profile_image_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 57.98, "rgb": {"blue": 167, "green": 203, "red": 202}}, {"percentage": 13.44, "rgb": {"blue": 32, "green": 30, "red": 30}}, {"percentage": 11.41, "rgb": {"blue": 130, "green": 151, "red": 200}}, {"percentage": 9.9, "rgb": {"blue": 112, "green": 127, "red": 123}}, {"percentage": 4.45, "rgb": {"blue": 64, "green": 63, "red": 116}}]}}}}, "profile_image_url_https": "https://pbs.twimg.com/profile_images/1426918545863159811/-waNB9nl_normal.jpg", "profile_interstitial_type": "", "protected": false, "screen_name": "eni_87ch", "statuses_count": 1637, "translator_type": "none", "verified": false, "withheld_in_countries": []}, "super_follow_eligible": false, "super_followed_by": false, "super_following": false}}}, "legacy": {"created_at": "Mon Oct 11 00:08:06 +0000 2021", "conversation_id_str": "1447348840164564994", "display_text_range": [79, 356], "entities": {"user_mentions": [{"id_str": "1087289365544534016", "name": "Iga \u015awi\u0105tek", "screen_name": "iga_swiatek", "indices": [0, 12]}, {"id_str": "17158140", "name": "wta", "screen_name": "WTA", "indices": [13, 17]}, {"id_str": "1252575285293260800", "name": "Xiaomi Polska", "screen_name": "XiaomiPL", "indices": [18, 27]}, {"id_str": "603617274", "name": "Grupa PZU", "screen_name": "GrupaPZU", "indices": [28, 37]}, {"id_str": "3111250452", "name": "ASICS Tennis", "screen_name": "ASICSTennis", "indices": [38, 50]}, {"id_str": "30017071", "name": "BNP Paribas Open", "screen_name": "BNPPARIBASOPEN", "indices": [51, 66]}, {"id_str": "64391043", "name": "Tecnifibre", "screen_name": "tecnifibre", "indices": [67, 78]}], "urls": [], "hashtags": [], "symbols": []}, "favorite_count": 10, "favorited": false, "full_text": "@iga_swiatek @WTA @XiaomiPL @GrupaPZU @ASICSTennis @BNPPARIBASOPEN @tecnifibre Pi\u0119kny gest.. \ud83d\udc4f. Nie znam konkretnych nazw ale mo\u017ce warto wesprze\u0107 jaki\u015b o\u015brodek leczenia zaburze\u0144 dla m\u0142odzie\u017cy? Ostatnimi czasy s\u0142yszy si\u0119 o sporej liczbie telefon\u00f3w od dzieciak\u00f3w, kt\u00f3re chcia\u0142y/chc\u0105 pope\u0142ni\u0107 samob\u00f3jstwo.. Warto u\u015bwiadamia\u0107, \u017ce \"nie czu\u0107 si\u0119 ok te\u017c jest ok\".", "in_reply_to_screen_name": "iga_swiatek", "in_reply_to_status_id_str": "1447348840164564994", "in_reply_to_user_id_str": "1087289365544534016", "is_quote_status": false, "lang": "pl", "quote_count": 0, "reply_count": 0, "retweet_count": 0, "retweeted": false, "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "user_id_str": "467820953", "id_str": "1447353275783782404"}}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:38.566854+02:00", "raw_value": {"__typename": "Tweet", "rest_id": "1447353519623884806", "has_birdwatch_notes": false, "core": {"user_results": {"result": {"__typename": "User", "id": "VXNlcjoxMzgzNDE2NTMy", "rest_id": "1383416532", "affiliates_highlighted_label": {}, "legacy": {"created_at": "Sat Apr 27 03:19:55 +0000 2013", "default_profile": true, "default_profile_image": false, "description": "Tweety Tennis. Bits of Baseball. Progressive Politics. Adorable Animals. She/her.", "entities": {"description": {"urls": []}}, "fast_followers_count": 0, "favourites_count": 20215, "followers_count": 22, "friends_count": 435, "has_custom_timelines": true, "is_translator": false, "listed_count": 0, "location": "twitterverse", "media_count": 100, "name": "Teezy", "normal_followers_count": 22, "pinned_tweet_ids_str": [], "profile_banner_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 38.43, "rgb": {"blue": 120, "green": 156, "red": 140}}, {"percentage": 21.44, "rgb": {"blue": 64, "green": 81, "red": 89}}, {"percentage": 20.28, "rgb": {"blue": 149, "green": 161, "red": 181}}, {"percentage": 4.38, "rgb": {"blue": 112, "green": 171, "red": 129}}, {"percentage": 2.29, "rgb": {"blue": 151, "green": 166, "red": 160}}]}}}}, "profile_banner_url": "https://pbs.twimg.com/profile_banners/1383416532/1602922705", "profile_image_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 29.63, "rgb": {"blue": 104, "green": 158, "red": 115}}, {"percentage": 23.74, "rgb": {"blue": 40, "green": 229, "red": 229}}, {"percentage": 17.07, "rgb": {"blue": 75, "green": 79, "red": 161}}, {"percentage": 9.2, "rgb": {"blue": 243, "green": 244, "red": 244}}, {"percentage": 6.2, "rgb": {"blue": 55, "green": 177, "red": 247}}]}}}}, "profile_image_url_https": "https://pbs.twimg.com/profile_images/848678345860554752/60kbHzuT_normal.jpg", "profile_interstitial_type": "", "protected": false, "screen_name": "TeezyPie", "statuses_count": 2987, "translator_type": "none", "verified": false, "withheld_in_countries": []}, "super_follow_eligible": false, "super_followed_by": false, "super_following": false}}}, "legacy": {"created_at": "Mon Oct 11 00:09:04 +0000 2021", "conversation_id_str": "1447348840164564994", "display_text_range": [79, 298], "entities": {"user_mentions": [{"id_str": "1087289365544534016", "name": "Iga \u015awi\u0105tek", "screen_name": "iga_swiatek", "indices": [0, 12]}, {"id_str": "17158140", "name": "wta", "screen_name": "WTA", "indices": [13, 17]}, {"id_str": "1252575285293260800", "name": "Xiaomi Polska", "screen_name": "XiaomiPL", "indices": [18, 27]}, {"id_str": "603617274", "name": "Grupa PZU", "screen_name": "GrupaPZU", "indices": [28, 37]}, {"id_str": "3111250452", "name": "ASICS Tennis", "screen_name": "ASICSTennis", "indices": [38, 50]}, {"id_str": "30017071", "name": "BNP Paribas Open", "screen_name": "BNPPARIBASOPEN", "indices": [51, 66]}, {"id_str": "64391043", "name": "Tecnifibre", "screen_name": "tecnifibre", "indices": [67, 78]}], "urls": [], "hashtags": [], "symbols": []}, "favorite_count": 3, "favorited": false, "full_text": "@iga_swiatek @WTA @XiaomiPL @GrupaPZU @ASICSTennis @BNPPARIBASOPEN @tecnifibre Thank you for lifting your voice to raise awareness! \u2764\ufe0f I don\u2019t live in Indian Wells, but hopefully someone who does can suggest a good charity that serves the community that lives where you\u2019re playing tennis this week.", "in_reply_to_screen_name": "iga_swiatek", "in_reply_to_status_id_str": "1447348840164564994", "in_reply_to_user_id_str": "1087289365544534016", "is_quote_status": false, "lang": "en", "quote_count": 0, "reply_count": 0, "retweet_count": 0, "retweeted": false, "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "user_id_str": "1383416532", "id_str": "1447353519623884806"}}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:38.567024+02:00", "raw_value": {"__typename": "Tweet", "rest_id": "1447353617971879941", "has_birdwatch_notes": false, "core": {"user_results": {"result": {"__typename": "User", "id": "VXNlcjo5ODU2NTAzNTA3NjkyMjk4MjU=", "rest_id": "985650350769229825", "affiliates_highlighted_label": {}, "legacy": {"created_at": "Sun Apr 15 22:45:30 +0000 2018", "default_profile": true, "default_profile_image": false, "description": "#Wsp\u00f3lnaPolska\n#20latTVN\n\u017byj tak, aby Twoje dziecko nie musia\u0142o zmienia\u0107 nazwiska.", "entities": {"description": {"urls": []}}, "fast_followers_count": 0, "favourites_count": 15516, "followers_count": 265, "friends_count": 215, "has_custom_timelines": true, "is_translator": false, "listed_count": 1, "location": "", "media_count": 379, "name": "Ewa Katarzyna Grabowska", "normal_followers_count": 265, "pinned_tweet_ids_str": [], "profile_image_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 36.77, "rgb": {"blue": 58, "green": 65, "red": 58}}, {"percentage": 27.56, "rgb": {"blue": 207, "green": 225, "red": 226}}, {"percentage": 13.72, "rgb": {"blue": 87, "green": 149, "red": 128}}, {"percentage": 3.99, "rgb": {"blue": 103, "green": 117, "red": 189}}, {"percentage": 3.47, "rgb": {"blue": 116, "green": 158, "red": 188}}]}}}}, "profile_image_url_https": "https://pbs.twimg.com/profile_images/1372850827161960453/QdeCscZG_normal.jpg", "profile_interstitial_type": "", "protected": false, "screen_name": "EwaKGrabowska", "statuses_count": 25652, "translator_type": "none", "verified": false, "withheld_in_countries": []}, "super_follow_eligible": false, "super_followed_by": false, "super_following": false}}}, "legacy": {"created_at": "Mon Oct 11 00:09:27 +0000 2021", "conversation_id_str": "1447348840164564994", "display_text_range": [79, 116], "entities": {"user_mentions": [{"id_str": "1087289365544534016", "name": "Iga \u015awi\u0105tek", "screen_name": "iga_swiatek", "indices": [0, 12]}, {"id_str": "17158140", "name": "wta", "screen_name": "WTA", "indices": [13, 17]}, {"id_str": "1252575285293260800", "name": "Xiaomi Polska", "screen_name": "XiaomiPL", "indices": [18, 27]}, {"id_str": "603617274", "name": "Grupa PZU", "screen_name": "GrupaPZU", "indices": [28, 37]}, {"id_str": "3111250452", "name": "ASICS Tennis", "screen_name": "ASICSTennis", "indices": [38, 50]}, {"id_str": "30017071", "name": "BNP Paribas Open", "screen_name": "BNPPARIBASOPEN", "indices": [51, 66]}, {"id_str": "64391043", "name": "Tecnifibre", "screen_name": "tecnifibre", "indices": [67, 78]}], "urls": [], "hashtags": [], "symbols": []}, "favorite_count": 1, "favorited": false, "full_text": "@iga_swiatek @WTA @XiaomiPL @GrupaPZU @ASICSTennis @BNPPARIBASOPEN @tecnifibre Nisko sk\u0142aniam g\u0142ow\u0119 - szacunek Igo \ud83d\udc96", "in_reply_to_screen_name": "iga_swiatek", "in_reply_to_status_id_str": "1447348840164564994", "in_reply_to_user_id_str": "1087289365544534016", "is_quote_status": false, "lang": "pl", "quote_count": 0, "reply_count": 0, "retweet_count": 0, "retweeted": false, "source": "<a href=\"https://mobile.twitter.com\" rel=\"nofollow\">Twitter Web App</a>", "user_id_str": "985650350769229825", "id_str": "1447353617971879941"}}}
is_cursor True last_scrapped_zero False
need_guest_token True
run request RequestDetails(http_method=<HttpMethod.GET: 1>, url='https://twitter.com/i/api/graphql/kUnCMgMYZCR8GyRZz76IQg/TweetDetail', headers={'Authorization': 'Bearer AAAAAAAAAAAAAAAAAAAAANRILgAAAAAAnNwIzUejRCOuH5E6I8xnZz4puTs%3D1Zv7ttfk8LF81IUq16cHjhLTvJu4FA33AGWWjCpTnA', 'x-guest-token': '1448607906950168577'}, params={'variables': '{"focalTweetId": "1447348840164564994", "with_rux_injections": true, "includePromotedContent": true, "withCommunity": true, "withTweetQuoteCount": true, "withBirdwatchNotes": true, "withSuperFollowsUserFields": true, "withUserResults": true, "withBirdwatchPivots": true, "withReactionsMetadata": true, "withReactionsPerspective": true, "withSuperFollowsTweetFields": true, "withVoice": true, "cursor": "_gAAAPAXHBn2G4SAuc2L-YKWKILAo5XE1YKWKIaAqfXvp4KWKITAuM2s34MJAFC58Y2WgyQAQr2Fvb8tAPAP-Yj6g5YojoCs1a65g5YoiMC5qYX1gpYojMC5tb6vSADwCMC58dXMgpYogIC51bbjgpYoiICzxduxPwBRgLLpsqYbAEGz0cGRGwBQubnZiIRsANGyoeSYgpYoioC5_e7BhwBQor2rz4NaANG-mfKWhJYogMCw4YD-hwBBvt3ylS0AQbL1v7l1AEK-1YvCPwBA-c6chJkA8Ai-tcHbgpYolMC9xZvTgpYoJQISFQ4AAA"}'}, timeout=20)
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:39.129143+02:00", "raw_value": {"__typename": "Tweet", "rest_id": "1447353928870514691", "has_birdwatch_notes": false, "core": {"user_results": {"result": {"__typename": "User", "id": "VXNlcjoxMzgxMDQzNjQ0ODYyNDQ3NjE5", "rest_id": "1381043644862447619", "affiliates_highlighted_label": {}, "legacy": {"created_at": "Sun Apr 11 00:37:54 +0000 2021", "default_profile": true, "default_profile_image": false, "description": "Nothing special. Just another human being lost on Earth and watching Rafa Nadal play tennis", "entities": {"description": {"urls": []}}, "fast_followers_count": 0, "favourites_count": 16645, "followers_count": 43, "friends_count": 92, "has_custom_timelines": true, "is_translator": false, "listed_count": 2, "location": "", "media_count": 44, "name": "DQ-Poa", "normal_followers_count": 43, "pinned_tweet_ids_str": [], "profile_banner_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 59.94, "rgb": {"blue": 42, "green": 41, "red": 40}}, {"percentage": 21.89, "rgb": {"blue": 205, "green": 208, "red": 209}}, {"percentage": 12.06, "rgb": {"blue": 137, "green": 110, "red": 96}}]}}}}, "profile_banner_url": "https://pbs.twimg.com/profile_banners/1381043644862447619/1618102423", "profile_image_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 65.21, "rgb": {"blue": 229, "green": 212, "red": 202}}, {"percentage": 15.62, "rgb": {"blue": 69, "green": 73, "red": 69}}, {"percentage": 9.68, "rgb": {"blue": 158, "green": 127, "red": 107}}, {"percentage": 3.99, "rgb": {"blue": 96, "green": 104, "red": 119}}, {"percentage": 0.12, "rgb": {"blue": 215, "green": 224, "red": 219}}]}}}}, "profile_image_url_https": "https://pbs.twimg.com/profile_images/1381047506352664576/u_CmI-Rl_normal.jpg", "profile_interstitial_type": "", "protected": false, "screen_name": "DqPoa", "statuses_count": 1165, "translator_type": "none", "verified": false, "withheld_in_countries": []}, "super_follow_eligible": false, "super_followed_by": false, "super_following": false}}}, "legacy": {"created_at": "Mon Oct 11 00:10:41 +0000 2021", "conversation_id_str": "1447348840164564994", "display_text_range": [79, 105], "entities": {"user_mentions": [{"id_str": "1087289365544534016", "name": "Iga \u015awi\u0105tek", "screen_name": "iga_swiatek", "indices": [0, 12]}, {"id_str": "17158140", "name": "wta", "screen_name": "WTA", "indices": [13, 17]}, {"id_str": "1252575285293260800", "name": "Xiaomi Polska", "screen_name": "XiaomiPL", "indices": [18, 27]}, {"id_str": "603617274", "name": "Grupa PZU", "screen_name": "GrupaPZU", "indices": [28, 37]}, {"id_str": "3111250452", "name": "ASICS Tennis", "screen_name": "ASICSTennis", "indices": [38, 50]}, {"id_str": "30017071", "name": "BNP Paribas Open", "screen_name": "BNPPARIBASOPEN", "indices": [51, 66]}, {"id_str": "64391043", "name": "Tecnifibre", "screen_name": "tecnifibre", "indices": [67, 78]}], "urls": [], "hashtags": [], "symbols": []}, "favorite_count": 1, "favorited": false, "full_text": "@iga_swiatek @WTA @XiaomiPL @GrupaPZU @ASICSTennis @BNPPARIBASOPEN @tecnifibre Girl, you\u2019re awesome! \ud83d\udc4f\ud83c\udffc\ud83d\udc4f\ud83c\udffc", "in_reply_to_screen_name": "iga_swiatek", "in_reply_to_status_id_str": "1447348840164564994", "in_reply_to_user_id_str": "1087289365544534016", "is_quote_status": false, "lang": "en", "quote_count": 0, "reply_count": 0, "retweet_count": 0, "retweeted": false, "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "user_id_str": "1381043644862447619", "id_str": "1447353928870514691"}}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:39.129412+02:00", "raw_value": {"__typename": "Tweet", "rest_id": "1447353976597454851", "has_birdwatch_notes": false, "core": {"user_results": {"result": {"__typename": "User", "id": "VXNlcjo0MzQzNzI4OTM=", "rest_id": "434372893", "affiliates_highlighted_label": {}, "legacy": {"created_at": "Sun Dec 11 19:40:53 +0000 2011", "default_profile": false, "default_profile_image": false, "description": "Im the one in the back with the gray shirt. Others are my sister on the left, and my sister's kids: Ryan, Emily, Kevin, Brooke Lynn, Kayla, and my mom and dad.", "entities": {"description": {"urls": []}}, "fast_followers_count": 0, "favourites_count": 4526, "followers_count": 94, "friends_count": 71, "has_custom_timelines": false, "is_translator": false, "listed_count": 0, "location": "Syracuse, NY", "media_count": 36, "name": "Mike Sylvester", "normal_followers_count": 94, "pinned_tweet_ids_str": [], "profile_banner_extensions": {"mediaColor": {"r": {}}}, "profile_banner_url": "https://pbs.twimg.com/profile_banners/434372893/1367170422", "profile_image_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 26.32, "rgb": {"blue": 61, "green": 60, "red": 59}}, {"percentage": 22.32, "rgb": {"blue": 177, "green": 188, "red": 207}}, {"percentage": 8.6, "rgb": {"blue": 107, "green": 80, "red": 24}}, {"percentage": 7.35, "rgb": {"blue": 71, "green": 69, "red": 116}}, {"percentage": 4.66, "rgb": {"blue": 61, "green": 54, "red": 174}}]}}}}, "profile_image_url_https": "https://pbs.twimg.com/profile_images/1688054057/Photo0037_normal.jpg", "profile_interstitial_type": "", "protected": false, "screen_name": "Deanay4Mike", "statuses_count": 4133, "translator_type": "none", "verified": false, "withheld_in_countries": []}, "super_follow_eligible": false, "super_followed_by": false, "super_following": false}}}, "legacy": {"created_at": "Mon Oct 11 00:10:53 +0000 2021", "conversation_id_str": "1447348840164564994", "display_text_range": [79, 128], "entities": {"user_mentions": [{"id_str": "1087289365544534016", "name": "Iga \u015awi\u0105tek", "screen_name": "iga_swiatek", "indices": [0, 12]}, {"id_str": "17158140", "name": "wta", "screen_name": "WTA", "indices": [13, 17]}, {"id_str": "1252575285293260800", "name": "Xiaomi Polska", "screen_name": "XiaomiPL", "indices": [18, 27]}, {"id_str": "603617274", "name": "Grupa PZU", "screen_name": "GrupaPZU", "indices": [28, 37]}, {"id_str": "3111250452", "name": "ASICS Tennis", "screen_name": "ASICSTennis", "indices": [38, 50]}, {"id_str": "30017071", "name": "BNP Paribas Open", "screen_name": "BNPPARIBASOPEN", "indices": [51, 66]}, {"id_str": "64391043", "name": "Tecnifibre", "screen_name": "tecnifibre", "indices": [67, 78]}], "urls": [], "hashtags": [], "symbols": []}, "favorite_count": 4, "favorited": false, "full_text": "@iga_swiatek @WTA @XiaomiPL @GrupaPZU @ASICSTennis @BNPPARIBASOPEN @tecnifibre American Foundation for Suicide Prevention (AFSP)", "in_reply_to_screen_name": "iga_swiatek", "in_reply_to_status_id_str": "1447348840164564994", "in_reply_to_user_id_str": "1087289365544534016", "is_quote_status": false, "lang": "en", "quote_count": 0, "reply_count": 0, "retweet_count": 0, "retweeted": false, "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "user_id_str": "434372893", "id_str": "1447353976597454851"}}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:39.129635+02:00", "raw_value": {"__typename": "Tweet", "rest_id": "1447354136987590661", "has_birdwatch_notes": false, "core": {"user_results": {"result": {"__typename": "User", "id": "VXNlcjozNTMzODA4ODQ=", "rest_id": "353380884", "affiliates_highlighted_label": {}, "legacy": {"created_at": "Fri Aug 12 00:12:07 +0000 2011", "default_profile": true, "default_profile_image": false, "description": "Old Bristolian", "entities": {"description": {"urls": []}}, "fast_followers_count": 0, "favourites_count": 27226, "followers_count": 299, "friends_count": 1059, "has_custom_timelines": true, "is_translator": false, "listed_count": 6, "location": "Bristol UK", "media_count": 9, "name": "Chris Gollop", "normal_followers_count": 299, "pinned_tweet_ids_str": [], "profile_banner_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 56.43, "rgb": {"blue": 0, "green": 0, "red": 0}}, {"percentage": 15.77, "rgb": {"blue": 132, "green": 161, "red": 209}}, {"percentage": 9.97, "rgb": {"blue": 93, "green": 118, "red": 202}}, {"percentage": 5.2, "rgb": {"blue": 138, "green": 215, "red": 241}}, {"percentage": 2.83, "rgb": {"blue": 199, "green": 206, "red": 223}}]}}}}, "profile_banner_url": "https://pbs.twimg.com/profile_banners/353380884/1617990513", "profile_image_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 32.25, "rgb": {"blue": 82, "green": 99, "red": 131}}, {"percentage": 21.6, "rgb": {"blue": 170, "green": 202, "red": 195}}, {"percentage": 17.81, "rgb": {"blue": 86, "green": 131, "red": 232}}, {"percentage": 5.8, "rgb": {"blue": 205, "green": 200, "red": 206}}, {"percentage": 3.18, "rgb": {"blue": 61, "green": 122, "red": 248}}]}}}}, "profile_image_url_https": "https://pbs.twimg.com/profile_images/1218338814936129538/ogV1XpMY_normal.jpg", "profile_interstitial_type": "", "protected": false, "screen_name": "ChrisRGollop", "statuses_count": 29799, "translator_type": "none", "verified": false, "withheld_in_countries": []}, "super_follow_eligible": false, "super_followed_by": false, "super_following": false}}}, "legacy": {"created_at": "Mon Oct 11 00:11:31 +0000 2021", "conversation_id_str": "1447348840164564994", "display_text_range": [79, 99], "entities": {"user_mentions": [{"id_str": "1087289365544534016", "name": "Iga \u015awi\u0105tek", "screen_name": "iga_swiatek", "indices": [0, 12]}, {"id_str": "17158140", "name": "wta", "screen_name": "WTA", "indices": [13, 17]}, {"id_str": "1252575285293260800", "name": "Xiaomi Polska", "screen_name": "XiaomiPL", "indices": [18, 27]}, {"id_str": "603617274", "name": "Grupa PZU", "screen_name": "GrupaPZU", "indices": [28, 37]}, {"id_str": "3111250452", "name": "ASICS Tennis", "screen_name": "ASICSTennis", "indices": [38, 50]}, {"id_str": "30017071", "name": "BNP Paribas Open", "screen_name": "BNPPARIBASOPEN", "indices": [51, 66]}, {"id_str": "64391043", "name": "Tecnifibre", "screen_name": "tecnifibre", "indices": [67, 78]}], "urls": [], "hashtags": [], "symbols": []}, "favorite_count": 1, "favorited": false, "full_text": "@iga_swiatek @WTA @XiaomiPL @GrupaPZU @ASICSTennis @BNPPARIBASOPEN @tecnifibre Brilliant gesture!\ud83d\udc4f\ud83d\udc4d", "in_reply_to_screen_name": "iga_swiatek", "in_reply_to_status_id_str": "1447348840164564994", "in_reply_to_user_id_str": "1087289365544534016", "is_quote_status": false, "lang": "en", "quote_count": 0, "reply_count": 0, "retweet_count": 0, "retweeted": false, "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "user_id_str": "353380884", "id_str": "1447354136987590661"}}}
is_cursor True last_scrapped_zero False
need_guest_token True
run request RequestDetails(http_method=<HttpMethod.GET: 1>, url='https://twitter.com/i/api/graphql/kUnCMgMYZCR8GyRZz76IQg/TweetDetail', headers={'Authorization': 'Bearer AAAAAAAAAAAAAAAAAAAAANRILgAAAAAAnNwIzUejRCOuH5E6I8xnZz4puTs%3D1Zv7ttfk8LF81IUq16cHjhLTvJu4FA33AGWWjCpTnA', 'x-guest-token': '1448607906950168577'}, params={'variables': '{"focalTweetId": "1447348840164564994", "with_rux_injections": true, "includePromotedContent": true, "withCommunity": true, "withTweetQuoteCount": true, "withBirdwatchNotes": true, "withSuperFollowsUserFields": true, "withUserResults": true, "withBirdwatchPivots": true, "withReactionsMetadata": true, "withReactionsPerspective": true, "withSuperFollowsTweetFields": true, "withVoice": true, "cursor": "GQEAAPANHBn2HoSAuc2L-YKWKILAo5XE1YKWKIaAqfXvpwkA8ADAvqnbroSWKITAuM2s34MJAFC58Y2Wgy0AQr2Fvb82APEP-Yj6g5YojoCs1a65g5YoiMC5qYX1gpYojMC5tb6vSADwELnx1cyCliiKgLP16bqEliiAgLnVtuOCliiIgLPF27FIAGCAsumypoIbAEGz0cGRGwBQubnZiISQAEG59b6xhwBBsqHkmEgAULn97sGCEgBQor2rz4NsAEC-mfKWWgBRwLDhgP6ZAEG-3fKVLQBCsvW_uc8AMtWLwj8AQPnOnISrAPAIvrXB24KWKJTAvcWb04KWKCUCEhUOAAA"}'}, timeout=20)
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:39.666441+02:00", "raw_value": {"__typename": "Tweet", "rest_id": "1447354265845051392", "has_birdwatch_notes": false, "core": {"user_results": {"result": {"__typename": "User", "id": "VXNlcjo4NjQ3NTEzMzM5MTk5MjQyMjQ=", "rest_id": "864751333919924224", "affiliates_highlighted_label": {}, "legacy": {"created_at": "Wed May 17 07:55:59 +0000 2017", "default_profile": false, "default_profile_image": false, "description": "Dziennikarz @RadioOlsztyn", "entities": {"description": {"urls": []}}, "fast_followers_count": 0, "favourites_count": 45593, "followers_count": 915, "friends_count": 626, "has_custom_timelines": false, "is_translator": false, "listed_count": 4, "location": "Olsztyn, Polska", "media_count": 1123, "name": "Piotrek \u015awiniarski", "normal_followers_count": 915, "pinned_tweet_ids_str": [], "profile_banner_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 72.17, "rgb": {"blue": 154, "green": 135, "red": 124}}, {"percentage": 24.2, "rgb": {"blue": 38, "green": 29, "red": 16}}, {"percentage": 2.25, "rgb": {"blue": 200, "green": 191, "red": 189}}, {"percentage": 1.31, "rgb": {"blue": 178, "green": 154, "red": 198}}]}}}}, "profile_banner_url": "https://pbs.twimg.com/profile_banners/864751333919924224/1550658837", "profile_image_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 55.64, "rgb": {"blue": 95, "green": 104, "red": 111}}, {"percentage": 36.44, "rgb": {"blue": 179, "green": 188, "red": 197}}, {"percentage": 3.94, "rgb": {"blue": 102, "green": 117, "red": 168}}, {"percentage": 1.36, "rgb": {"blue": 128, "green": 169, "red": 178}}, {"percentage": 1.31, "rgb": {"blue": 56, "green": 57, "red": 62}}]}}}}, "profile_image_url_https": "https://pbs.twimg.com/profile_images/1098168874720219136/v3Wy4b1M_normal.jpg", "profile_interstitial_type": "", "protected": false, "screen_name": "SwiniarskiP", "statuses_count": 7968, "translator_type": "none", "verified": false, "withheld_in_countries": []}, "super_follow_eligible": false, "super_followed_by": false, "super_following": false}}}, "legacy": {"created_at": "Mon Oct 11 00:12:02 +0000 2021", "conversation_id_str": "1447348840164564994", "display_text_range": [79, 101], "entities": {"user_mentions": [{"id_str": "1087289365544534016", "name": "Iga \u015awi\u0105tek", "screen_name": "iga_swiatek", "indices": [0, 12]}, {"id_str": "17158140", "name": "wta", "screen_name": "WTA", "indices": [13, 17]}, {"id_str": "1252575285293260800", "name": "Xiaomi Polska", "screen_name": "XiaomiPL", "indices": [18, 27]}, {"id_str": "603617274", "name": "Grupa PZU", "screen_name": "GrupaPZU", "indices": [28, 37]}, {"id_str": "3111250452", "name": "ASICS Tennis", "screen_name": "ASICSTennis", "indices": [38, 50]}, {"id_str": "30017071", "name": "BNP Paribas Open", "screen_name": "BNPPARIBASOPEN", "indices": [51, 66]}, {"id_str": "64391043", "name": "Tecnifibre", "screen_name": "tecnifibre", "indices": [67, 78]}], "urls": [], "hashtags": [], "symbols": []}, "favorite_count": 0, "favorited": false, "full_text": "@iga_swiatek @WTA @XiaomiPL @GrupaPZU @ASICSTennis @BNPPARIBASOPEN @tecnifibre Szacunek Pani Igo! \ud83d\udc4f\ud83d\udc4f\ud83d\udc4f", "in_reply_to_screen_name": "iga_swiatek", "in_reply_to_status_id_str": "1447348840164564994", "in_reply_to_user_id_str": "1087289365544534016", "is_quote_status": false, "lang": "pl", "quote_count": 0, "reply_count": 0, "retweet_count": 0, "retweeted": false, "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "user_id_str": "864751333919924224", "id_str": "1447354265845051392"}}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:39.666719+02:00", "raw_value": {"__typename": "Tweet", "rest_id": "1447355614578057216", "has_birdwatch_notes": false, "core": {"user_results": {"result": {"__typename": "User", "id": "VXNlcjoxMzg5OTI1MjUzNTM1NzM1ODE2", "rest_id": "1389925253535735816", "affiliates_highlighted_label": {}, "legacy": {"created_at": "Wed May 05 12:49:50 +0000 2021", "default_profile": true, "default_profile_image": false, "description": "Real Madryt \ud83e\udd70, pi\u0142eczka i nie tylko \ud83e\udd19\ud83d\udc40, analiza \ud83e\uddd0, taktyczne dyskusje \ud83e\udd28 Po godzinach moderator twitch na kanale @Huge_Gorilla \ud83e\udd8dsoon +3 podcast \u26bd\ufe0f", "entities": {"description": {"urls": []}}, "fast_followers_count": 0, "favourites_count": 6327, "followers_count": 121, "friends_count": 211, "has_custom_timelines": true, "is_translator": false, "listed_count": 0, "location": "", "media_count": 175, "name": "Qurrito (\ud83c\udf96)", "normal_followers_count": 121, "pinned_tweet_ids_str": ["1436674977298849792"], "profile_banner_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 54.65, "rgb": {"blue": 111, "green": 128, "red": 149}}, {"percentage": 24.6, "rgb": {"blue": 32, "green": 42, "red": 62}}, {"percentage": 7.05, "rgb": {"blue": 107, "green": 124, "red": 144}}, {"percentage": 0.85, "rgb": {"blue": 243, "green": 248, "red": 186}}, {"percentage": 0.82, "rgb": {"blue": 49, "green": 23, "red": 23}}]}}}}, "profile_banner_url": "https://pbs.twimg.com/profile_banners/1389925253535735816/1632356461", "profile_image_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 61.8, "rgb": {"blue": 244, "green": 247, "red": 245}}, {"percentage": 16.58, "rgb": {"blue": 51, "green": 33, "red": 32}}, {"percentage": 8.0, "rgb": {"blue": 118, "green": 161, "red": 211}}, {"percentage": 3.63, "rgb": {"blue": 49, "green": 68, "red": 93}}, {"percentage": 3.22, "rgb": {"blue": 142, "green": 95, "red": 54}}]}}}}, "profile_image_url_https": "https://pbs.twimg.com/profile_images/1439915916788121607/gF0y02Qn_normal.jpg", "profile_interstitial_type": "", "protected": false, "screen_name": "qvrrito", "statuses_count": 2552, "translator_type": "none", "verified": false, "withheld_in_countries": []}, "super_follow_eligible": false, "super_followed_by": false, "super_following": false}}}, "legacy": {"created_at": "Mon Oct 11 00:17:23 +0000 2021", "conversation_id_str": "1447348840164564994", "display_text_range": [79, 80], "entities": {"user_mentions": [{"id_str": "1087289365544534016", "name": "Iga \u015awi\u0105tek", "screen_name": "iga_swiatek", "indices": [0, 12]}, {"id_str": "17158140", "name": "wta", "screen_name": "WTA", "indices": [13, 17]}, {"id_str": "1252575285293260800", "name": "Xiaomi Polska", "screen_name": "XiaomiPL", "indices": [18, 27]}, {"id_str": "603617274", "name": "Grupa PZU", "screen_name": "GrupaPZU", "indices": [28, 37]}, {"id_str": "3111250452", "name": "ASICS Tennis", "screen_name": "ASICSTennis", "indices": [38, 50]}, {"id_str": "30017071", "name": "BNP Paribas Open", "screen_name": "BNPPARIBASOPEN", "indices": [51, 66]}, {"id_str": "64391043", "name": "Tecnifibre", "screen_name": "tecnifibre", "indices": [67, 78]}], "urls": [], "hashtags": [], "symbols": []}, "favorite_count": 0, "favorited": false, "full_text": "@iga_swiatek @WTA @XiaomiPL @GrupaPZU @ASICSTennis @BNPPARIBASOPEN @tecnifibre \u2764", "in_reply_to_screen_name": "iga_swiatek", "in_reply_to_status_id_str": "1447348840164564994", "in_reply_to_user_id_str": "1087289365544534016", "is_quote_status": false, "lang": "und", "quote_count": 0, "reply_count": 0, "retweet_count": 0, "retweeted": false, "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "user_id_str": "1389925253535735816", "id_str": "1447355614578057216"}}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:39.666929+02:00", "raw_value": {"__typename": "Tweet", "rest_id": "1447357267163103233", "has_birdwatch_notes": false, "core": {"user_results": {"result": {"__typename": "User", "id": "VXNlcjo0MDYzOTI1Nw==", "rest_id": "40639257", "affiliates_highlighted_label": {}, "legacy": {"created_at": "Sun May 17 10:23:40 +0000 2009", "default_profile": false, "default_profile_image": false, "description": "politics, marketing, tennis, tv series, cinema, Australia | EN/DE/PL/SE | \ud83c\udff3\ufe0f\u200d\ud83c\udf08 | MA Marketing", "entities": {"description": {"urls": []}}, "fast_followers_count": 0, "favourites_count": 235726, "followers_count": 6597, "friends_count": 527, "has_custom_timelines": true, "is_translator": false, "listed_count": 22, "location": "Berlin, Germany", "media_count": 1246, "name": "biedrowski \ud83d\udc3e", "normal_followers_count": 6597, "pinned_tweet_ids_str": ["1270689135439884290"], "profile_banner_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 74.6, "rgb": {"blue": 76, "green": 128, "red": 206}}, {"percentage": 10.36, "rgb": {"blue": 60, "green": 48, "red": 57}}, {"percentage": 5.7, "rgb": {"blue": 187, "green": 176, "red": 190}}, {"percentage": 2.36, "rgb": {"blue": 127, "green": 95, "red": 80}}, {"percentage": 1.0, "rgb": {"blue": 48, "green": 152, "red": 215}}]}}}}, "profile_banner_url": "https://pbs.twimg.com/profile_banners/40639257/1594247667", "profile_image_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 81.21, "rgb": {"blue": 222, "green": 222, "red": 222}}, {"percentage": 14.59, "rgb": {"blue": 74, "green": 74, "red": 74}}]}}}}, "profile_image_url_https": "https://pbs.twimg.com/profile_images/1190149609676517377/vML3LUIy_normal.jpg", "profile_interstitial_type": "", "protected": false, "screen_name": "PawelBiedrowski", "statuses_count": 53174, "translator_type": "none", "verified": false, "withheld_in_countries": []}, "super_follow_eligible": false, "super_followed_by": false, "super_following": false}}}, "legacy": {"created_at": "Mon Oct 11 00:23:57 +0000 2021", "conversation_id_str": "1447348840164564994", "display_text_range": [79, 84], "entities": {"user_mentions": [{"id_str": "1087289365544534016", "name": "Iga \u015awi\u0105tek", "screen_name": "iga_swiatek", "indices": [0, 12]}, {"id_str": "17158140", "name": "wta", "screen_name": "WTA", "indices": [13, 17]}, {"id_str": "1252575285293260800", "name": "Xiaomi Polska", "screen_name": "XiaomiPL", "indices": [18, 27]}, {"id_str": "603617274", "name": "Grupa PZU", "screen_name": "GrupaPZU", "indices": [28, 37]}, {"id_str": "3111250452", "name": "ASICS Tennis", "screen_name": "ASICSTennis", "indices": [38, 50]}, {"id_str": "30017071", "name": "BNP Paribas Open", "screen_name": "BNPPARIBASOPEN", "indices": [51, 66]}, {"id_str": "64391043", "name": "Tecnifibre", "screen_name": "tecnifibre", "indices": [67, 78]}], "urls": [], "hashtags": [], "symbols": []}, "favorite_count": 28, "favorited": false, "full_text": "@iga_swiatek @WTA @XiaomiPL @GrupaPZU @ASICSTennis @BNPPARIBASOPEN @tecnifibre Queen", "in_reply_to_screen_name": "iga_swiatek", "in_reply_to_status_id_str": "1447348840164564994", "in_reply_to_user_id_str": "1087289365544534016", "is_quote_status": false, "lang": "en", "quote_count": 0, "reply_count": 0, "retweet_count": 1, "retweeted": false, "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "user_id_str": "40639257", "id_str": "1447357267163103233"}}}
is_cursor True last_scrapped_zero False
need_guest_token True
run request RequestDetails(http_method=<HttpMethod.GET: 1>, url='https://twitter.com/i/api/graphql/kUnCMgMYZCR8GyRZz76IQg/TweetDetail', headers={'Authorization': 'Bearer AAAAAAAAAAAAAAAAAAAAANRILgAAAAAAnNwIzUejRCOuH5E6I8xnZz4puTs%3D1Zv7ttfk8LF81IUq16cHjhLTvJu4FA33AGWWjCpTnA', 'x-guest-token': '1448607906950168577'}, params={'variables': '{"focalTweetId": "1447348840164564994", "with_rux_injections": true, "includePromotedContent": true, "withCommunity": true, "withTweetQuoteCount": true, "withBirdwatchNotes": true, "withSuperFollowsUserFields": true, "withUserResults": true, "withBirdwatchPivots": true, "withReactionsMetadata": true, "withReactionsPerspective": true, "withSuperFollowsTweetFields": true, "withVoice": true, "cursor": "NAEAAPANHBn2IYSAuc2L-YKWKILAo5XE1YKWKIaAqfXvpwkA8AnAvqnbroSWKIKAssWD8YWWKITAuM2s34MJAFC58Y2WgzYAQr2Fvb8_APEP-Yj6g5YojoCs1a65g5YoiMC5qYX1gpYojMC5tb6vUQDxEbnx1cyCliiKgLP16bqEliiAgLnVtuOCliiIgLPF27GCbABA6bKmghsAQbPRwZEbAEG5udmILQDgvenqkIWWKIDAuf2pwoSrAFC59b6xhJAAQbKh5JhaAFC5_e7BghIAUKK9q8-DfgBAvpnylj8AUcCw4YD-qwBBvt3ylS0AQrL1v7nqADLVi8I_AED5zpyEvQDwCL61wduCliiUwL3Fm9OCliglAhIVDgAA"}'}, timeout=20)
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:40.154211+02:00", "raw_value": {"__typename": "Tweet", "rest_id": "1447355349338578944", "has_birdwatch_notes": false, "core": {"user_results": {"result": {"__typename": "User", "id": "VXNlcjoxNDEzNjAwMzQ0NzkwMTQyOTc4", "rest_id": "1413600344790142978", "affiliates_highlighted_label": {}, "legacy": {"created_at": "Fri Jul 09 20:46:44 +0000 2021", "default_profile": true, "default_profile_image": false, "description": "i love to hate you  #EdukacjaDurniu  #WolneSady  na TT od 2015 #Bia\u0142oru\u015b2020", "entities": {"description": {"urls": []}}, "fast_followers_count": 0, "favourites_count": 3159, "followers_count": 703, "friends_count": 954, "has_custom_timelines": false, "is_translator": false, "listed_count": 1, "location": "Kells co. Meath", "media_count": 840, "name": "cameleon z Kells", "normal_followers_count": 703, "pinned_tweet_ids_str": [], "profile_banner_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 58.38, "rgb": {"blue": 255, "green": 255, "red": 255}}, {"percentage": 35.37, "rgb": {"blue": 11, "green": 0, "red": 194}}, {"percentage": 3.65, "rgb": {"blue": 83, "green": 76, "red": 202}}, {"percentage": 1.76, "rgb": {"blue": 149, "green": 147, "red": 220}}, {"percentage": 0.31, "rgb": {"blue": 251, "green": 254, "red": 250}}]}}}}, "profile_banner_url": "https://pbs.twimg.com/profile_banners/1413600344790142978/1632323541", "profile_image_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 28.85, "rgb": {"blue": 183, "green": 138, "red": 126}}, {"percentage": 28.53, "rgb": {"blue": 52, "green": 50, "red": 50}}, {"percentage": 17.81, "rgb": {"blue": 82, "green": 117, "red": 126}}, {"percentage": 12.54, "rgb": {"blue": 73, "green": 78, "red": 117}}, {"percentage": 2.95, "rgb": {"blue": 100, "green": 76, "red": 53}}]}}}}, "profile_image_url_https": "https://pbs.twimg.com/profile_images/1415981987807047683/7uPpszBS_normal.jpg", "profile_interstitial_type": "", "protected": false, "screen_name": "greg66751062", "statuses_count": 5726, "translator_type": "none", "verified": false, "withheld_in_countries": []}, "super_follow_eligible": false, "super_followed_by": false, "super_following": false}}}, "legacy": {"created_at": "Mon Oct 11 00:16:20 +0000 2021", "conversation_id_str": "1447348840164564994", "display_text_range": [92, 100], "entities": {"user_mentions": [{"id_str": "1087289365544534016", "name": "Iga \u015awi\u0105tek", "screen_name": "iga_swiatek", "indices": [0, 12]}, {"id_str": "836353418872635392", "name": "Dorota.C#FBPE", "screen_name": "Dorota_2017", "indices": [13, 25]}, {"id_str": "17158140", "name": "wta", "screen_name": "WTA", "indices": [26, 30]}, {"id_str": "1252575285293260800", "name": "Xiaomi Polska", "screen_name": "XiaomiPL", "indices": [31, 40]}, {"id_str": "603617274", "name": "Grupa PZU", "screen_name": "GrupaPZU", "indices": [41, 50]}, {"id_str": "3111250452", "name": "ASICS Tennis", "screen_name": "ASICSTennis", "indices": [51, 63]}, {"id_str": "30017071", "name": "BNP Paribas Open", "screen_name": "BNPPARIBASOPEN", "indices": [64, 79]}, {"id_str": "64391043", "name": "Tecnifibre", "screen_name": "tecnifibre", "indices": [80, 91]}], "urls": [], "hashtags": [], "symbols": []}, "favorite_count": 0, "favorited": false, "full_text": "@iga_swiatek @Dorota_2017 @WTA @XiaomiPL @GrupaPZU @ASICSTennis @BNPPARIBASOPEN @tecnifibre jest git", "in_reply_to_screen_name": "iga_swiatek", "in_reply_to_status_id_str": "1447348840164564994", "in_reply_to_user_id_str": "1087289365544534016", "is_quote_status": false, "lang": "en", "quote_count": 0, "reply_count": 0, "retweet_count": 0, "retweeted": false, "source": "<a href=\"https://mobile.twitter.com\" rel=\"nofollow\">Twitter Web App</a>", "user_id_str": "1413600344790142978", "id_str": "1447355349338578944"}}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:40.154494+02:00", "raw_value": {"__typename": "Tweet", "rest_id": "1447355505597366274", "has_birdwatch_notes": false, "core": {"user_results": {"result": {"__typename": "User", "id": "VXNlcjoyMzQ5ODAzMTcx", "rest_id": "2349803171", "affiliates_highlighted_label": {}, "legacy": {"created_at": "Tue Feb 18 02:47:43 +0000 2014", "default_profile": false, "default_profile_image": false, "description": "\ud83c\uddf5\ud83c\uddf1 #LEC (L)", "entities": {"description": {"urls": []}}, "fast_followers_count": 0, "favourites_count": 38399, "followers_count": 40, "friends_count": 235, "has_custom_timelines": true, "is_translator": false, "listed_count": 0, "location": "", "media_count": 131, "name": "mate", "normal_followers_count": 40, "pinned_tweet_ids_str": ["1273066387141988352"], "profile_banner_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 51.4, "rgb": {"blue": 149, "green": 160, "red": 173}}, {"percentage": 22.73, "rgb": {"blue": 37, "green": 55, "red": 88}}, {"percentage": 9.48, "rgb": {"blue": 55, "green": 96, "red": 143}}, {"percentage": 8.79, "rgb": {"blue": 88, "green": 129, "red": 156}}, {"percentage": 7.39, "rgb": {"blue": 87, "green": 77, "red": 85}}]}}}}, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2349803171/1629672854", "profile_image_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 87.89, "rgb": {"blue": 0, "green": 0, "red": 0}}, {"percentage": 6.82, "rgb": {"blue": 174, "green": 157, "red": 154}}, {"percentage": 1.92, "rgb": {"blue": 56, "green": 19, "red": 193}}, {"percentage": 1.11, "rgb": {"blue": 29, "green": 8, "red": 115}}, {"percentage": 0.46, "rgb": {"blue": 28, "green": 20, "red": 55}}]}}}}, "profile_image_url_https": "https://pbs.twimg.com/profile_images/1432416689199718408/OJqROoiH_normal.jpg", "profile_interstitial_type": "", "protected": false, "screen_name": "mateushh_w", "statuses_count": 8068, "translator_type": "none", "verified": false, "withheld_in_countries": []}, "super_follow_eligible": false, "super_followed_by": false, "super_following": false}}}, "legacy": {"created_at": "Mon Oct 11 00:16:57 +0000 2021", "conversation_id_str": "1447348840164564994", "display_text_range": [79, 90], "entities": {"user_mentions": [{"id_str": "1087289365544534016", "name": "Iga \u015awi\u0105tek", "screen_name": "iga_swiatek", "indices": [0, 12]}, {"id_str": "17158140", "name": "wta", "screen_name": "WTA", "indices": [13, 17]}, {"id_str": "1252575285293260800", "name": "Xiaomi Polska", "screen_name": "XiaomiPL", "indices": [18, 27]}, {"id_str": "603617274", "name": "Grupa PZU", "screen_name": "GrupaPZU", "indices": [28, 37]}, {"id_str": "3111250452", "name": "ASICS Tennis", "screen_name": "ASICSTennis", "indices": [38, 50]}, {"id_str": "30017071", "name": "BNP Paribas Open", "screen_name": "BNPPARIBASOPEN", "indices": [51, 66]}, {"id_str": "64391043", "name": "Tecnifibre", "screen_name": "tecnifibre", "indices": [67, 78]}], "urls": [], "hashtags": [], "symbols": []}, "favorite_count": 0, "favorited": false, "full_text": "@iga_swiatek @WTA @XiaomiPL @GrupaPZU @ASICSTennis @BNPPARIBASOPEN @tecnifibre Brawo Iga \ud83d\ude0e", "in_reply_to_screen_name": "iga_swiatek", "in_reply_to_status_id_str": "1447348840164564994", "in_reply_to_user_id_str": "1087289365544534016", "is_quote_status": false, "lang": "pl", "quote_count": 0, "reply_count": 0, "retweet_count": 0, "retweeted": false, "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "user_id_str": "2349803171", "id_str": "1447355505597366274"}}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:40.154690+02:00", "raw_value": {"__typename": "Tweet", "rest_id": "1447356977143758849", "has_birdwatch_notes": false, "core": {"user_results": {"result": {"__typename": "User", "id": "VXNlcjoxMTc5MTA2MzM1ODA1MzY2Mjcz", "rest_id": "1179106335805366273", "affiliates_highlighted_label": {}, "legacy": {"created_at": "Tue Oct 01 18:50:38 +0000 2019", "default_profile": true, "default_profile_image": false, "description": "#prawdafutbolu\n#Ekstraklasa", "entities": {"description": {"urls": []}}, "fast_followers_count": 0, "favourites_count": 12784, "followers_count": 17, "friends_count": 963, "has_custom_timelines": true, "is_translator": false, "listed_count": 0, "location": "", "media_count": 0, "name": "Adrian", "normal_followers_count": 17, "pinned_tweet_ids_str": [], "profile_image_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 24.68, "rgb": {"blue": 85, "green": 17, "red": 49}}, {"percentage": 9.56, "rgb": {"blue": 95, "green": 67, "red": 215}}, {"percentage": 8.38, "rgb": {"blue": 52, "green": 149, "red": 240}}, {"percentage": 6.83, "rgb": {"blue": 233, "green": 205, "red": 143}}, {"percentage": 6.08, "rgb": {"blue": 80, "green": 100, "red": 238}}]}}}}, "profile_image_url_https": "https://pbs.twimg.com/profile_images/1179106461261221895/hMOc0_yH_normal.jpg", "profile_interstitial_type": "", "protected": false, "screen_name": "Adrian70664073", "statuses_count": 84, "translator_type": "none", "verified": false, "withheld_in_countries": []}, "super_follow_eligible": false, "super_followed_by": false, "super_following": false}}}, "legacy": {"created_at": "Mon Oct 11 00:22:48 +0000 2021", "conversation_id_str": "1447348840164564994", "display_text_range": [79, 86], "entities": {"user_mentions": [{"id_str": "1087289365544534016", "name": "Iga \u015awi\u0105tek", "screen_name": "iga_swiatek", "indices": [0, 12]}, {"id_str": "17158140", "name": "wta", "screen_name": "WTA", "indices": [13, 17]}, {"id_str": "1252575285293260800", "name": "Xiaomi Polska", "screen_name": "XiaomiPL", "indices": [18, 27]}, {"id_str": "603617274", "name": "Grupa PZU", "screen_name": "GrupaPZU", "indices": [28, 37]}, {"id_str": "3111250452", "name": "ASICS Tennis", "screen_name": "ASICSTennis", "indices": [38, 50]}, {"id_str": "30017071", "name": "BNP Paribas Open", "screen_name": "BNPPARIBASOPEN", "indices": [51, 66]}, {"id_str": "64391043", "name": "Tecnifibre", "screen_name": "tecnifibre", "indices": [67, 78]}], "urls": [], "hashtags": [], "symbols": []}, "favorite_count": 0, "favorited": false, "full_text": "@iga_swiatek @WTA @XiaomiPL @GrupaPZU @ASICSTennis @BNPPARIBASOPEN @tecnifibre Top Iga", "in_reply_to_screen_name": "iga_swiatek", "in_reply_to_status_id_str": "1447348840164564994", "in_reply_to_user_id_str": "1087289365544534016", "is_quote_status": false, "lang": "et", "quote_count": 0, "reply_count": 0, "retweet_count": 0, "retweeted": false, "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "user_id_str": "1179106335805366273", "id_str": "1447356977143758849"}}}
is_cursor True last_scrapped_zero False
need_guest_token True
run request RequestDetails(http_method=<HttpMethod.GET: 1>, url='https://twitter.com/i/api/graphql/kUnCMgMYZCR8GyRZz76IQg/TweetDetail', headers={'Authorization': 'Bearer AAAAAAAAAAAAAAAAAAAAANRILgAAAAAAnNwIzUejRCOuH5E6I8xnZz4puTs%3D1Zv7ttfk8LF81IUq16cHjhLTvJu4FA33AGWWjCpTnA', 'x-guest-token': '1448607906950168577'}, params={'variables': '{"focalTweetId": "1447348840164564994", "with_rux_injections": true, "includePromotedContent": true, "withCommunity": true, "withTweetQuoteCount": true, "withBirdwatchNotes": true, "withSuperFollowsUserFields": true, "withUserResults": true, "withBirdwatchPivots": true, "withReactionsMetadata": true, "withReactionsPerspective": true, "withSuperFollowsTweetFields": true, "withVoice": true, "cursor": "TwEAAPANHBn2JISAuc2L-YKWKILAo5XE1YKWKIaAqfXvpwkA8AnAvqnbroSWKIKAssWD8YWWKITAuM2s34MJAFC58Y2WgzYA4b2Fvb-CliiEgLLtvoqFSADxD_mI-oOWKI6ArNWuuYOWKIjAuamF9YKWKIzAubW-r1oA8RG58dXMgpYoioCz9em6hJYogIC51bbjgpYoiICzxduxgnUAQOmypoIbAEGz0cGRGwBBubnZiC0A4L3p6pCFliiAwLn9qcKEtABQufW-sYSZAEGyoeSYWgBAuf3uwZkAYcCivavPg1EAQN2S4IWHAEC-mfKWSABRwLDhgP78AEG-3fKVNgBCsvW_ufwAMtWLwkgAQPnOnITGAEO-tcHbkADwBrKBhZYolMC9xZvTgpYoJQISFQ4AAA"}'}, timeout=20)
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:40.666367+02:00", "raw_value": {"__typename": "Tweet", "rest_id": "1447357502031544326", "has_birdwatch_notes": false, "core": {"user_results": {"result": {"__typename": "User", "id": "VXNlcjoyMjcyMjExMjIx", "rest_id": "2272211221", "affiliates_highlighted_label": {}, "legacy": {"created_at": "Wed Jan 01 23:21:14 +0000 2014", "default_profile": false, "default_profile_image": false, "description": "\u201cYou think you\u2019re gonna take her away with your money and your cocaine\u201d \ud83c\udfb8\ud83c\udfa4\ud83c\udfa9 \ud83d\udc94", "entities": {"description": {"urls": []}}, "fast_followers_count": 0, "favourites_count": 19611, "followers_count": 34, "friends_count": 158, "has_custom_timelines": false, "is_translator": false, "listed_count": 1, "location": "Hudson, OH", "media_count": 1270, "name": "Patrick \ud83d\udc7b\ud83e\udd89", "normal_followers_count": 34, "pinned_tweet_ids_str": [], "profile_banner_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 86.23, "rgb": {"blue": 195, "green": 222, "red": 232}}, {"percentage": 9.63, "rgb": {"blue": 106, "green": 121, "red": 127}}, {"percentage": 1.4, "rgb": {"blue": 40, "green": 44, "red": 43}}, {"percentage": 1.04, "rgb": {"blue": 137, "green": 208, "red": 220}}, {"percentage": 0.29, "rgb": {"blue": 67, "green": 195, "red": 215}}]}}}}, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2272211221/1633926159", "profile_image_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 33.91, "rgb": {"blue": 126, "green": 148, "red": 199}}, {"percentage": 31.83, "rgb": {"blue": 64, "green": 60, "red": 57}}, {"percentage": 14.42, "rgb": {"blue": 108, "green": 115, "red": 111}}, {"percentage": 11.92, "rgb": {"blue": 204, "green": 216, "red": 218}}, {"percentage": 3.85, "rgb": {"blue": 74, "green": 94, "red": 137}}]}}}}, "profile_image_url_https": "https://pbs.twimg.com/profile_images/1444439245167513601/n3o75IlH_normal.jpg", "profile_interstitial_type": "", "protected": false, "screen_name": "ARVersion4", "statuses_count": 7570, "translator_type": "none", "verified": false, "withheld_in_countries": []}, "super_follow_eligible": false, "super_followed_by": false, "super_following": false}}}, "legacy": {"created_at": "Mon Oct 11 00:24:53 +0000 2021", "conversation_id_str": "1447348840164564994", "display_text_range": [94, 148], "entities": {"user_mentions": [{"id_str": "1087289365544534016", "name": "Iga \u015awi\u0105tek", "screen_name": "iga_swiatek", "indices": [0, 12]}, {"id_str": "56447187", "name": "Ben Rothenberg", "screen_name": "BenRothenberg", "indices": [13, 27]}, {"id_str": "17158140", "name": "wta", "screen_name": "WTA", "indices": [28, 32]}, {"id_str": "1252575285293260800", "name": "Xiaomi Polska", "screen_name": "XiaomiPL", "indices": [33, 42]}, {"id_str": "603617274", "name": "Grupa PZU", "screen_name": "GrupaPZU", "indices": [43, 52]}, {"id_str": "3111250452", "name": "ASICS Tennis", "screen_name": "ASICSTennis", "indices": [53, 65]}, {"id_str": "30017071", "name": "BNP Paribas Open", "screen_name": "BNPPARIBASOPEN", "indices": [66, 81]}, {"id_str": "64391043", "name": "Tecnifibre", "screen_name": "tecnifibre", "indices": [82, 93]}], "urls": [], "hashtags": [], "symbols": []}, "favorite_count": 1, "favorited": false, "full_text": "@iga_swiatek @BenRothenberg @WTA @XiaomiPL @GrupaPZU @ASICSTennis @BNPPARIBASOPEN @tecnifibre Thank you Iga this is a terrific thing to do! \ud83d\udc4f\ud83c\udffc\ud83d\udc4d\ud83c\udffc\ud83d\udcaa\ud83c\udffc\u2764\ufe0f", "in_reply_to_screen_name": "iga_swiatek", "in_reply_to_status_id_str": "1447348840164564994", "in_reply_to_user_id_str": "1087289365544534016", "is_quote_status": false, "lang": "en", "place": {"attributes": {}, "bounding_box": {"coordinates": [[[-81.491087, 41.1355657], [-81.491087, 41.2175], [-81.392049, 41.2175], [-81.392049, 41.1355657]]], "type": "Polygon"}, "contained_within": [], "country": "United States", "country_code": "US", "full_name": "Stow, OH", "name": "Stow", "id": "5920ec228f7cd83f", "place_type": "city", "url": "https://api.twitter.com/1.1/geo/id/5920ec228f7cd83f.json"}, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "retweeted": false, "source": "<a href=\"http://twitter.com/#!/download/ipad\" rel=\"nofollow\">Twitter for iPad</a>", "user_id_str": "2272211221", "id_str": "1447357502031544326"}}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:40.666619+02:00", "raw_value": {"__typename": "Tweet", "rest_id": "1447359425258430464", "has_birdwatch_notes": false, "core": {"user_results": {"result": {"__typename": "User", "id": "VXNlcjoxMDA3Mzc1OTA4Njc4Nzk1MjY5", "rest_id": "1007375908678795269", "affiliates_highlighted_label": {}, "legacy": {"created_at": "Thu Jun 14 21:35:07 +0000 2018", "default_profile": true, "default_profile_image": false, "description": "", "entities": {"description": {"urls": []}}, "fast_followers_count": 0, "favourites_count": 54, "followers_count": 4, "friends_count": 53, "has_custom_timelines": false, "is_translator": false, "listed_count": 0, "location": "", "media_count": 3, "name": "Aleksander", "normal_followers_count": 4, "pinned_tweet_ids_str": [], "profile_image_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 38.21, "rgb": {"blue": 169, "green": 183, "red": 187}}, {"percentage": 30.1, "rgb": {"blue": 102, "green": 132, "red": 172}}, {"percentage": 13.3, "rgb": {"blue": 43, "green": 38, "red": 33}}, {"percentage": 3.72, "rgb": {"blue": 82, "green": 54, "red": 35}}, {"percentage": 3.27, "rgb": {"blue": 46, "green": 62, "red": 89}}]}}}}, "profile_image_url_https": "https://pbs.twimg.com/profile_images/1429093715671453704/UnOaEV94_normal.jpg", "profile_interstitial_type": "", "protected": false, "screen_name": "Aleksan70891699", "statuses_count": 38, "translator_type": "none", "verified": false, "withheld_in_countries": []}, "super_follow_eligible": false, "super_followed_by": false, "super_following": false}}}, "legacy": {"created_at": "Mon Oct 11 00:32:32 +0000 2021", "conversation_id_str": "1447348840164564994", "display_text_range": [79, 101], "entities": {"user_mentions": [{"id_str": "1087289365544534016", "name": "Iga \u015awi\u0105tek", "screen_name": "iga_swiatek", "indices": [0, 12]}, {"id_str": "17158140", "name": "wta", "screen_name": "WTA", "indices": [13, 17]}, {"id_str": "1252575285293260800", "name": "Xiaomi Polska", "screen_name": "XiaomiPL", "indices": [18, 27]}, {"id_str": "603617274", "name": "Grupa PZU", "screen_name": "GrupaPZU", "indices": [28, 37]}, {"id_str": "3111250452", "name": "ASICS Tennis", "screen_name": "ASICSTennis", "indices": [38, 50]}, {"id_str": "30017071", "name": "BNP Paribas Open", "screen_name": "BNPPARIBASOPEN", "indices": [51, 66]}, {"id_str": "64391043", "name": "Tecnifibre", "screen_name": "tecnifibre", "indices": [67, 78]}], "urls": [], "hashtags": [], "symbols": []}, "favorite_count": 1, "favorited": false, "full_text": "@iga_swiatek @WTA @XiaomiPL @GrupaPZU @ASICSTennis @BNPPARIBASOPEN @tecnifibre Szacun, jeste\u015b koxem \ud83d\ude42", "in_reply_to_screen_name": "iga_swiatek", "in_reply_to_status_id_str": "1447348840164564994", "in_reply_to_user_id_str": "1087289365544534016", "is_quote_status": false, "lang": "pl", "quote_count": 0, "reply_count": 0, "retweet_count": 0, "retweeted": false, "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "user_id_str": "1007375908678795269", "id_str": "1447359425258430464"}}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:40.666839+02:00", "raw_value": {"__typename": "Tweet", "rest_id": "1447359905371881473", "has_birdwatch_notes": false, "core": {"user_results": {"result": {"__typename": "User", "id": "VXNlcjoxNTk2NDAyNA==", "rest_id": "15964024", "affiliates_highlighted_label": {}, "legacy": {"created_at": "Sun Aug 24 02:18:08 +0000 2008", "default_profile": false, "default_profile_image": false, "description": "teacher-librarian(ret) , grandpa, gardener, birder, artist, photographer and fly fisher. he/him/his , living on traditional territory of Syilx/ \ud83d\udc89\ud83d\udc89", "entities": {"description": {"urls": []}}, "fast_followers_count": 0, "favourites_count": 45507, "followers_count": 1270, "friends_count": 1272, "has_custom_timelines": true, "is_translator": false, "listed_count": 0, "location": "", "media_count": 1665, "name": "Al Smith \ud83d\ude37", "normal_followers_count": 1270, "pinned_tweet_ids_str": [], "profile_banner_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 40.79, "rgb": {"blue": 16, "green": 25, "red": 12}}, {"percentage": 24.93, "rgb": {"blue": 48, "green": 79, "red": 34}}, {"percentage": 21.88, "rgb": {"blue": 189, "green": 209, "red": 210}}, {"percentage": 8.1, "rgb": {"blue": 37, "green": 77, "red": 79}}, {"percentage": 2.96, "rgb": {"blue": 106, "green": 145, "red": 123}}]}}}}, "profile_banner_url": "https://pbs.twimg.com/profile_banners/15964024/1633829828", "profile_image_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 29.96, "rgb": {"blue": 12, "green": 48, "red": 225}}, {"percentage": 21.88, "rgb": {"blue": 93, "green": 107, "red": 165}}, {"percentage": 16.08, "rgb": {"blue": 47, "green": 47, "red": 61}}, {"percentage": 14.85, "rgb": {"blue": 74, "green": 98, "red": 81}}, {"percentage": 5.3, "rgb": {"blue": 173, "green": 179, "red": 178}}]}}}}, "profile_image_url_https": "https://pbs.twimg.com/profile_images/1440522852235546629/TxDiywKH_normal.jpg", "profile_interstitial_type": "", "protected": false, "screen_name": "literateowl", "statuses_count": 40520, "translator_type": "none", "verified": false, "withheld_in_countries": []}, "super_follow_eligible": false, "super_followed_by": false, "super_following": false}}}, "legacy": {"created_at": "Mon Oct 11 00:34:26 +0000 2021", "conversation_id_str": "1447348840164564994", "display_text_range": [79, 89], "entities": {"user_mentions": [{"id_str": "1087289365544534016", "name": "Iga \u015awi\u0105tek", "screen_name": "iga_swiatek", "indices": [0, 12]}, {"id_str": "17158140", "name": "wta", "screen_name": "WTA", "indices": [13, 17]}, {"id_str": "1252575285293260800", "name": "Xiaomi Polska", "screen_name": "XiaomiPL", "indices": [18, 27]}, {"id_str": "603617274", "name": "Grupa PZU", "screen_name": "GrupaPZU", "indices": [28, 37]}, {"id_str": "3111250452", "name": "ASICS Tennis", "screen_name": "ASICSTennis", "indices": [38, 50]}, {"id_str": "30017071", "name": "BNP Paribas Open", "screen_name": "BNPPARIBASOPEN", "indices": [51, 66]}, {"id_str": "64391043", "name": "Tecnifibre", "screen_name": "tecnifibre", "indices": [67, 78]}], "urls": [], "hashtags": [], "symbols": []}, "favorite_count": 0, "favorited": false, "full_text": "@iga_swiatek @WTA @XiaomiPL @GrupaPZU @ASICSTennis @BNPPARIBASOPEN @tecnifibre Bravo! \ud83d\udc4f\ud83d\udd4a\ud83c\udfbe", "in_reply_to_screen_name": "iga_swiatek", "in_reply_to_status_id_str": "1447348840164564994", "in_reply_to_user_id_str": "1087289365544534016", "is_quote_status": false, "lang": "pt", "quote_count": 0, "reply_count": 0, "retweet_count": 0, "retweeted": false, "source": "<a href=\"http://twitter.com/#!/download/ipad\" rel=\"nofollow\">Twitter for iPad</a>", "user_id_str": "15964024", "id_str": "1447359905371881473"}}}
is_cursor True last_scrapped_zero False
need_guest_token True
run request RequestDetails(http_method=<HttpMethod.GET: 1>, url='https://twitter.com/i/api/graphql/kUnCMgMYZCR8GyRZz76IQg/TweetDetail', headers={'Authorization': 'Bearer AAAAAAAAAAAAAAAAAAAAANRILgAAAAAAnNwIzUejRCOuH5E6I8xnZz4puTs%3D1Zv7ttfk8LF81IUq16cHjhLTvJu4FA33AGWWjCpTnA', 'x-guest-token': '1448607906950168577'}, params={'variables': '{"focalTweetId": "1447348840164564994", "with_rux_injections": true, "includePromotedContent": true, "withCommunity": true, "withTweetQuoteCount": true, "withBirdwatchNotes": true, "withSuperFollowsUserFields": true, "withUserResults": true, "withBirdwatchPivots": true, "withReactionsMetadata": true, "withReactionsPerspective": true, "withSuperFollowsTweetFields": true, "withVoice": true, "cursor": "agEAAPANHBn2J4SAuc2L-YKWKILAo5XE1YKWKIaAqfXvpxIA8ACArN3LioeWKIbAvqnbroQSAOCyxYPxhZYohMC4zazfgwkAULnxjZaDPwDhvYW9v4KWKISAsu2-ioVRAPAP-Yj6g5YojoCs1a65g5YoiMC5qYX1gpYojMC5tb6vbADxEcC58dXMgpYoioCz9em6hJYogIC51bbjgpYoiICzxduxhwBQsumypoIbAEGz0cGRGwBBubnZiC0A4L3p6pCFliiAwLn9qcKEvQBQufW-sYSZAEGyoeSYWgBAuf3uwXUAUYCyudn-vQBRor2rz4NaAEHdkuCFSABAzdLuhpkAQL6Z8pZaAFHAsOGA_hcBQb7d8pVIAEGy9b-5tABCvtWLwloAQPnOnITYAEO-tcHbogDwBrKBhZYolMC9xZvTgpYoJQISFQ4AAA"}'}, timeout=20)
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:41.179101+02:00", "raw_value": {"__typename": "Tweet", "rest_id": "1447364729333297153", "has_birdwatch_notes": false, "core": {"user_results": {"result": {"__typename": "User", "id": "VXNlcjo5NDk2MzE3NDQ5NDAxMzQ0MDA=", "rest_id": "949631744940134400", "affiliates_highlighted_label": {}, "legacy": {"created_at": "Sat Jan 06 13:20:26 +0000 2018", "default_profile": true, "default_profile_image": false, "description": "If We Don\u2019t Defend Freedom : There Will Be No More Freedom! Je\u015bli Nie B\u0119dziemy Broni\u0107 Wolno\u015bci : Nie B\u0119dzie Wi\u0119cej Wolno\u015bci !", "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "constitutionalrightscentre.ca/.com", "expanded_url": "https://www.constitutionalrightscentre.ca/.com", "url": "https://t.co/Ef5nt4t9UL", "indices": [0, 23]}]}}, "fast_followers_count": 0, "favourites_count": 4829, "followers_count": 49, "friends_count": 377, "has_custom_timelines": false, "is_translator": false, "listed_count": 1, "location": "OUROBOROS/VIDEMUS MUNDUM ", "media_count": 1362, "name": "ADAM : https://biblehub.com/gnt/job/28.htm", "normal_followers_count": 49, "pinned_tweet_ids_str": ["1446649523569319941"], "profile_banner_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 50.38, "rgb": {"blue": 35, "green": 41, "red": 50}}, {"percentage": 34.5, "rgb": {"blue": 165, "green": 178, "red": 212}}, {"percentage": 2.98, "rgb": {"blue": 73, "green": 96, "red": 144}}, {"percentage": 1.84, "rgb": {"blue": 195, "green": 192, "red": 204}}, {"percentage": 0.76, "rgb": {"blue": 106, "green": 119, "red": 178}}]}}}}, "profile_banner_url": "https://pbs.twimg.com/profile_banners/949631744940134400/1601652374", "profile_image_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 45.2, "rgb": {"blue": 195, "green": 213, "red": 225}}, {"percentage": 37.93, "rgb": {"blue": 34, "green": 36, "red": 36}}, {"percentage": 8.76, "rgb": {"blue": 102, "green": 107, "red": 108}}, {"percentage": 4.05, "rgb": {"blue": 133, "green": 156, "red": 217}}, {"percentage": 1.72, "rgb": {"blue": 71, "green": 90, "red": 140}}]}}}}, "profile_image_url_https": "https://pbs.twimg.com/profile_images/1386377436749836293/V_F4drzC_normal.jpg", "profile_interstitial_type": "", "protected": false, "screen_name": "adamcz42598248", "statuses_count": 10616, "translator_type": "none", "url": "https://t.co/Ef5nt4t9UL", "verified": false, "withheld_in_countries": []}, "super_follow_eligible": false, "super_followed_by": false, "super_following": false}}}, "legacy": {"created_at": "Mon Oct 11 00:53:36 +0000 2021", "conversation_id_str": "1447348840164564994", "display_text_range": [79, 345], "entities": {"user_mentions": [{"id_str": "1087289365544534016", "name": "Iga \u015awi\u0105tek", "screen_name": "iga_swiatek", "indices": [0, 12]}, {"id_str": "17158140", "name": "wta", "screen_name": "WTA", "indices": [13, 17]}, {"id_str": "1252575285293260800", "name": "Xiaomi Polska", "screen_name": "XiaomiPL", "indices": [18, 27]}, {"id_str": "603617274", "name": "Grupa PZU", "screen_name": "GrupaPZU", "indices": [28, 37]}, {"id_str": "3111250452", "name": "ASICS Tennis", "screen_name": "ASICSTennis", "indices": [38, 50]}, {"id_str": "30017071", "name": "BNP Paribas Open", "screen_name": "BNPPARIBASOPEN", "indices": [51, 66]}, {"id_str": "64391043", "name": "Tecnifibre", "screen_name": "tecnifibre", "indices": [67, 78]}, {"id_str": "703242004822695936", "name": "wRealu24.pl", "screen_name": "wrealu24_pl", "indices": [274, 286]}], "urls": [], "hashtags": [], "symbols": []}, "favorite_count": 2, "favorited": false, "full_text": "@iga_swiatek @WTA @XiaomiPL @GrupaPZU @ASICSTennis @BNPPARIBASOPEN @tecnifibre Nadszed\u0142 Czas \u017beby Walczy\u0107 O Wolno\u015b\u0107 W Swoim W\u0142asnym Kraju Droga Pani \u015awiatek Pozdrawiamy \u201eForced Vaccinations To tylko the beginning takie pieni\u0105dze by si\u0119 przydaly napszyklad wolnym mediom jak @wrealu24_pl Nowak ju\u017c podj\u0105\u0142 decyzje to co si\u0119 dzieje jest okropne \ud83d\udd4a\ud83c\uddf5\ud83c\uddf1", "in_reply_to_screen_name": "iga_swiatek", "in_reply_to_status_id_str": "1447348840164564994", "in_reply_to_user_id_str": "1087289365544534016", "is_quote_status": false, "lang": "pl", "quote_count": 0, "reply_count": 1, "retweet_count": 0, "retweeted": false, "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "user_id_str": "949631744940134400", "id_str": "1447364729333297153"}}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:41.179384+02:00", "raw_value": {"__typename": "Tweet", "rest_id": "1447370065498845191", "has_birdwatch_notes": false, "core": {"user_results": {"result": {"__typename": "User", "id": "VXNlcjoxODQ5MDk0MjI4", "rest_id": "1849094228", "affiliates_highlighted_label": {}, "legacy": {"created_at": "Mon Sep 09 18:48:17 +0000 2013", "default_profile": false, "default_profile_image": false, "description": "Book editor; phile of most arts and many sports. She/her \ud83d\udc96 (art @mojacookie)", "entities": {"description": {"urls": []}}, "fast_followers_count": 0, "favourites_count": 17609, "followers_count": 223, "friends_count": 218, "has_custom_timelines": true, "is_translator": false, "listed_count": 5, "location": "Toronto, ON", "media_count": 637, "name": "Lorissa Sengara \ud83c\udf08", "normal_followers_count": 223, "pinned_tweet_ids_str": ["1364262766060666884"], "profile_banner_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 91.91, "rgb": {"blue": 210, "green": 236, "red": 250}}, {"percentage": 5.23, "rgb": {"blue": 110, "green": 129, "red": 153}}, {"percentage": 1.71, "rgb": {"blue": 117, "green": 102, "red": 177}}, {"percentage": 0.84, "rgb": {"blue": 185, "green": 207, "red": 210}}, {"percentage": 0.16, "rgb": {"blue": 119, "green": 168, "red": 199}}]}}}}, "profile_banner_url": "https://pbs.twimg.com/profile_banners/1849094228/1618593807", "profile_image_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 38.67, "rgb": {"blue": 54, "green": 62, "red": 75}}, {"percentage": 26.09, "rgb": {"blue": 94, "green": 106, "red": 131}}, {"percentage": 26.06, "rgb": {"blue": 215, "green": 215, "red": 197}}, {"percentage": 2.45, "rgb": {"blue": 33, "green": 47, "red": 80}}, {"percentage": 1.77, "rgb": {"blue": 153, "green": 184, "red": 233}}]}}}}, "profile_image_url_https": "https://pbs.twimg.com/profile_images/1403132080557637635/eErrUT7F_normal.jpg", "profile_interstitial_type": "", "protected": false, "screen_name": "LorissaSengara", "statuses_count": 6457, "translator_type": "none", "verified": false, "withheld_in_countries": []}, "super_follow_eligible": false, "super_followed_by": false, "super_following": false}}}, "legacy": {"created_at": "Mon Oct 11 01:14:49 +0000 2021", "conversation_id_str": "1447348840164564994", "display_text_range": [94, 171], "entities": {"user_mentions": [{"id_str": "1087289365544534016", "name": "Iga \u015awi\u0105tek", "screen_name": "iga_swiatek", "indices": [0, 12]}, {"id_str": "56447187", "name": "Ben Rothenberg", "screen_name": "BenRothenberg", "indices": [13, 27]}, {"id_str": "17158140", "name": "wta", "screen_name": "WTA", "indices": [28, 32]}, {"id_str": "1252575285293260800", "name": "Xiaomi Polska", "screen_name": "XiaomiPL", "indices": [33, 42]}, {"id_str": "603617274", "name": "Grupa PZU", "screen_name": "GrupaPZU", "indices": [43, 52]}, {"id_str": "3111250452", "name": "ASICS Tennis", "screen_name": "ASICSTennis", "indices": [53, 65]}, {"id_str": "30017071", "name": "BNP Paribas Open", "screen_name": "BNPPARIBASOPEN", "indices": [66, 81]}, {"id_str": "64391043", "name": "Tecnifibre", "screen_name": "tecnifibre", "indices": [82, 93]}, {"id_str": "18916728", "name": "The Trevor Project", "screen_name": "TrevorProject", "indices": [157, 171]}], "urls": [], "hashtags": [], "symbols": []}, "favorite_count": 2, "favorited": false, "full_text": "@iga_swiatek @BenRothenberg @WTA @XiaomiPL @GrupaPZU @ASICSTennis @BNPPARIBASOPEN @tecnifibre What a wonderful post. The Trevor Project does wonderful work. @TrevorProject", "in_reply_to_screen_name": "iga_swiatek", "in_reply_to_status_id_str": "1447348840164564994", "in_reply_to_user_id_str": "1087289365544534016", "is_quote_status": false, "lang": "en", "quote_count": 0, "reply_count": 0, "retweet_count": 0, "retweeted": false, "source": "<a href=\"http://twitter.com/#!/download/ipad\" rel=\"nofollow\">Twitter for iPad</a>", "user_id_str": "1849094228", "id_str": "1447370065498845191"}}}
is_cursor True last_scrapped_zero False
need_guest_token True
run request RequestDetails(http_method=<HttpMethod.GET: 1>, url='https://twitter.com/i/api/graphql/kUnCMgMYZCR8GyRZz76IQg/TweetDetail', headers={'Authorization': 'Bearer AAAAAAAAAAAAAAAAAAAAANRILgAAAAAAnNwIzUejRCOuH5E6I8xnZz4puTs%3D1Zv7ttfk8LF81IUq16cHjhLTvJu4FA33AGWWjCpTnA', 'x-guest-token': '1448607906950168577'}, params={'variables': '{"focalTweetId": "1447348840164564994", "with_rux_injections": true, "includePromotedContent": true, "withCommunity": true, "withTweetQuoteCount": true, "withBirdwatchNotes": true, "withSuperFollowsUserFields": true, "withUserResults": true, "withBirdwatchPivots": true, "withReactionsMetadata": true, "withReactionsPerspective": true, "withSuperFollowsTweetFields": true, "withVoice": true, "cursor": "fAEAAPANHBn2KYSAuc2L-YKWKILAo5XE1YKWKIaAqfXvpxIA8ACArN3LioeWKIbAvqnbroQSAOCyxYPxhZYohMC4zazfgwkAULnxjZaDPwDhvYW9v4KWKISAsu2-ioVRAPAZ-Yj6g5YojoCs1a65g5YoiMC5qYX1gpYojMC5tb6vgpYojsC9yf7Zi2MA8RC58dXMgpYoioCz9em6hJYogIC51bbjgpYoiICzxduxkABQsumypoIbAEGz0cGRGwBBubnZiC0A4L3p6pCFliiAwLn9qcKExgBQufW-sYSiAEGyoeSYWgBAuf3uwX4AUYCyudn-xgBRor2rz4NaAEHdkuCFSABAzdLuhqIAQL6Z8pZaAFHAsOGA_iABQb7d8pVIAEGy9b-5EgBRuYWxo4kgATLVi8JjAED5zpyE6gBDvrXB26sA8AaygYWWKJTAvcWb04KWKCUCEhUOAAA"}'}, timeout=20)
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:41.616097+02:00", "raw_value": {"__typename": "Tweet", "rest_id": "1447372182271709192", "has_birdwatch_notes": false, "core": {"user_results": {"result": {"__typename": "User", "id": "VXNlcjoxOTE3MzU3NjM3", "rest_id": "1917357637", "affiliates_highlighted_label": {}, "legacy": {"created_at": "Sun Sep 29 14:54:51 +0000 2013", "default_profile": true, "default_profile_image": false, "description": "", "entities": {"description": {"urls": []}}, "fast_followers_count": 0, "favourites_count": 6339, "followers_count": 105, "friends_count": 195, "has_custom_timelines": true, "is_translator": false, "listed_count": 0, "location": "plain city, ohio", "media_count": 342, "name": "Brett A Fuller", "normal_followers_count": 105, "pinned_tweet_ids_str": [], "profile_banner_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 52.67, "rgb": {"blue": 81, "green": 110, "red": 99}}, {"percentage": 41.72, "rgb": {"blue": 227, "green": 220, "red": 211}}, {"percentage": 3.71, "rgb": {"blue": 75, "green": 75, "red": 72}}, {"percentage": 0.13, "rgb": {"blue": 45, "green": 55, "red": 50}}]}}}}, "profile_banner_url": "https://pbs.twimg.com/profile_banners/1917357637/1539827083", "profile_image_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 26.23, "rgb": {"blue": 57, "green": 47, "red": 36}}, {"percentage": 24.97, "rgb": {"blue": 177, "green": 180, "red": 178}}, {"percentage": 17.46, "rgb": {"blue": 208, "green": 167, "red": 107}}, {"percentage": 7.18, "rgb": {"blue": 32, "green": 67, "red": 55}}, {"percentage": 4.43, "rgb": {"blue": 129, "green": 164, "red": 191}}]}}}}, "profile_image_url_https": "https://pbs.twimg.com/profile_images/1384542165385220102/gi2gxaQU_normal.jpg", "profile_interstitial_type": "", "protected": false, "screen_name": "BrettAFuller1", "statuses_count": 3148, "translator_type": "none", "verified": false, "withheld_in_countries": []}, "super_follow_eligible": false, "super_followed_by": false, "super_following": false}}}, "legacy": {"created_at": "Mon Oct 11 01:23:13 +0000 2021", "conversation_id_str": "1447348840164564994", "display_text_range": [79, 110], "entities": {"user_mentions": [{"id_str": "1087289365544534016", "name": "Iga \u015awi\u0105tek", "screen_name": "iga_swiatek", "indices": [0, 12]}, {"id_str": "17158140", "name": "wta", "screen_name": "WTA", "indices": [13, 17]}, {"id_str": "1252575285293260800", "name": "Xiaomi Polska", "screen_name": "XiaomiPL", "indices": [18, 27]}, {"id_str": "603617274", "name": "Grupa PZU", "screen_name": "GrupaPZU", "indices": [28, 37]}, {"id_str": "3111250452", "name": "ASICS Tennis", "screen_name": "ASICSTennis", "indices": [38, 50]}, {"id_str": "30017071", "name": "BNP Paribas Open", "screen_name": "BNPPARIBASOPEN", "indices": [51, 66]}, {"id_str": "64391043", "name": "Tecnifibre", "screen_name": "tecnifibre", "indices": [67, 78]}], "urls": [], "hashtags": [], "symbols": []}, "favorite_count": 1, "favorited": false, "full_text": "@iga_swiatek @WTA @XiaomiPL @GrupaPZU @ASICSTennis @BNPPARIBASOPEN @tecnifibre Great win and a very nice gift.", "in_reply_to_screen_name": "iga_swiatek", "in_reply_to_status_id_str": "1447348840164564994", "in_reply_to_user_id_str": "1087289365544534016", "is_quote_status": false, "lang": "en", "quote_count": 0, "reply_count": 0, "retweet_count": 0, "retweeted": false, "source": "<a href=\"http://twitter.com/#!/download/ipad\" rel=\"nofollow\">Twitter for iPad</a>", "user_id_str": "1917357637", "id_str": "1447372182271709192"}}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:41.616352+02:00", "raw_value": {"__typename": "Tweet", "rest_id": "1447380039956238339", "has_birdwatch_notes": false, "core": {"user_results": {"result": {"__typename": "User", "id": "VXNlcjo4ODMxOTY0OTkxNzMwNTY1MTM=", "rest_id": "883196499173056513", "affiliates_highlighted_label": {}, "legacy": {"created_at": "Fri Jul 07 05:30:29 +0000 2017", "default_profile": true, "default_profile_image": false, "description": "I love basketball. Support Gordon Hayward.", "entities": {"description": {"urls": []}}, "fast_followers_count": 0, "favourites_count": 2609, "followers_count": 3, "friends_count": 22, "has_custom_timelines": false, "is_translator": false, "listed_count": 0, "location": "Japan.", "media_count": 11, "name": "Jimmy GH", "normal_followers_count": 3, "pinned_tweet_ids_str": [], "profile_image_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 35.25, "rgb": {"blue": 18, "green": 22, "red": 38}}, {"percentage": 30.79, "rgb": {"blue": 202, "green": 209, "red": 229}}, {"percentage": 14.25, "rgb": {"blue": 37, "green": 65, "red": 101}}, {"percentage": 4.17, "rgb": {"blue": 53, "green": 45, "red": 23}}, {"percentage": 3.01, "rgb": {"blue": 105, "green": 128, "red": 186}}]}}}}, "profile_image_url_https": "https://pbs.twimg.com/profile_images/1129276045507452930/Eia5DKxq_normal.jpg", "profile_interstitial_type": "", "protected": false, "screen_name": "JimmyHayward56", "statuses_count": 348, "translator_type": "none", "verified": false, "withheld_in_countries": []}, "super_follow_eligible": false, "super_followed_by": false, "super_following": false}}}, "legacy": {"created_at": "Mon Oct 11 01:54:27 +0000 2021", "conversation_id_str": "1447348840164564994", "display_text_range": [79, 118], "entities": {"user_mentions": [{"id_str": "1087289365544534016", "name": "Iga \u015awi\u0105tek", "screen_name": "iga_swiatek", "indices": [0, 12]}, {"id_str": "17158140", "name": "wta", "screen_name": "WTA", "indices": [13, 17]}, {"id_str": "1252575285293260800", "name": "Xiaomi Polska", "screen_name": "XiaomiPL", "indices": [18, 27]}, {"id_str": "603617274", "name": "Grupa PZU", "screen_name": "GrupaPZU", "indices": [28, 37]}, {"id_str": "3111250452", "name": "ASICS Tennis", "screen_name": "ASICSTennis", "indices": [38, 50]}, {"id_str": "30017071", "name": "BNP Paribas Open", "screen_name": "BNPPARIBASOPEN", "indices": [51, 66]}, {"id_str": "64391043", "name": "Tecnifibre", "screen_name": "tecnifibre", "indices": [67, 78]}], "urls": [], "hashtags": [], "symbols": []}, "favorite_count": 1, "favorited": false, "full_text": "@iga_swiatek @WTA @XiaomiPL @GrupaPZU @ASICSTennis @BNPPARIBASOPEN @tecnifibre What a kind move,  beautiful girl &lt;3", "in_reply_to_screen_name": "iga_swiatek", "in_reply_to_status_id_str": "1447348840164564994", "in_reply_to_user_id_str": "1087289365544534016", "is_quote_status": false, "lang": "en", "quote_count": 0, "reply_count": 0, "retweet_count": 0, "retweeted": false, "source": "<a href=\"https://mobile.twitter.com\" rel=\"nofollow\">Twitter Web App</a>", "user_id_str": "883196499173056513", "id_str": "1447380039956238339"}}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:41.616555+02:00", "raw_value": {"__typename": "Tweet", "rest_id": "1447381460479090688", "has_birdwatch_notes": false, "core": {"user_results": {"result": {"__typename": "User", "id": "VXNlcjo5MTg5MTgyNzYxNTUxNDIxNDU=", "rest_id": "918918276155142145", "affiliates_highlighted_label": {}, "legacy": {"created_at": "Fri Oct 13 19:16:04 +0000 2017", "default_profile": false, "default_profile_image": false, "description": "I am 100% a Manchester United , Borrussia Dortmund, Tennis Fun.  Naomi Osaka,  Simona Halep, Iga Swaitek, Raducanu.  Crazy about music,  piano, violin & vocals.", "entities": {"description": {"urls": []}}, "fast_followers_count": 0, "favourites_count": 2213, "followers_count": 54, "friends_count": 447, "has_custom_timelines": false, "is_translator": false, "listed_count": 0, "location": "Wherever SOCCER AND TENNIS IS", "media_count": 81, "name": "angel", "normal_followers_count": 54, "pinned_tweet_ids_str": [], "profile_banner_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 30.38, "rgb": {"blue": 35, "green": 27, "red": 20}}, {"percentage": 16.17, "rgb": {"blue": 215, "green": 200, "red": 193}}, {"percentage": 13.28, "rgb": {"blue": 38, "green": 48, "red": 86}}, {"percentage": 10.54, "rgb": {"blue": 98, "green": 118, "red": 185}}, {"percentage": 8.41, "rgb": {"blue": 19, "green": 10, "red": 168}}]}}}}, "profile_banner_url": "https://pbs.twimg.com/profile_banners/918918276155142145/1632957451", "profile_image_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 72.92, "rgb": {"blue": 139, "green": 199, "red": 159}}, {"percentage": 11.27, "rgb": {"blue": 236, "green": 239, "red": 236}}, {"percentage": 5.92, "rgb": {"blue": 24, "green": 27, "red": 22}}, {"percentage": 5.69, "rgb": {"blue": 31, "green": 97, "red": 142}}, {"percentage": 0.62, "rgb": {"blue": 59, "green": 115, "red": 109}}]}}}}, "profile_image_url_https": "https://pbs.twimg.com/profile_images/1443354194291855362/j7Vfk_ym_normal.jpg", "profile_interstitial_type": "", "protected": false, "screen_name": "elizmaerica", "statuses_count": 3117, "translator_type": "none", "verified": false, "withheld_in_countries": []}, "super_follow_eligible": false, "super_followed_by": false, "super_following": false}}}, "legacy": {"created_at": "Mon Oct 11 02:00:05 +0000 2021", "conversation_id_str": "1447348840164564994", "display_text_range": [79, 100], "entities": {"user_mentions": [{"id_str": "1087289365544534016", "name": "Iga \u015awi\u0105tek", "screen_name": "iga_swiatek", "indices": [0, 12]}, {"id_str": "17158140", "name": "wta", "screen_name": "WTA", "indices": [13, 17]}, {"id_str": "1252575285293260800", "name": "Xiaomi Polska", "screen_name": "XiaomiPL", "indices": [18, 27]}, {"id_str": "603617274", "name": "Grupa PZU", "screen_name": "GrupaPZU", "indices": [28, 37]}, {"id_str": "3111250452", "name": "ASICS Tennis", "screen_name": "ASICSTennis", "indices": [38, 50]}, {"id_str": "30017071", "name": "BNP Paribas Open", "screen_name": "BNPPARIBASOPEN", "indices": [51, 66]}, {"id_str": "64391043", "name": "Tecnifibre", "screen_name": "tecnifibre", "indices": [67, 78]}], "urls": [], "hashtags": [], "symbols": []}, "favorite_count": 1, "favorited": false, "full_text": "@iga_swiatek @WTA @XiaomiPL @GrupaPZU @ASICSTennis @BNPPARIBASOPEN @tecnifibre Thank you so much IGA", "in_reply_to_screen_name": "iga_swiatek", "in_reply_to_status_id_str": "1447348840164564994", "in_reply_to_user_id_str": "1087289365544534016", "is_quote_status": false, "lang": "en", "quote_count": 0, "reply_count": 0, "retweet_count": 0, "retweeted": false, "source": "<a href=\"https://mobile.twitter.com\" rel=\"nofollow\">Twitter Web App</a>", "user_id_str": "918918276155142145", "id_str": "1447381460479090688"}}}
is_cursor True last_scrapped_zero False
need_guest_token True
run request RequestDetails(http_method=<HttpMethod.GET: 1>, url='https://twitter.com/i/api/graphql/kUnCMgMYZCR8GyRZz76IQg/TweetDetail', headers={'Authorization': 'Bearer AAAAAAAAAAAAAAAAAAAAANRILgAAAAAAnNwIzUejRCOuH5E6I8xnZz4puTs%3D1Zv7ttfk8LF81IUq16cHjhLTvJu4FA33AGWWjCpTnA', 'x-guest-token': '1448607906950168577'}, params={'variables': '{"focalTweetId": "1447348840164564994", "with_rux_injections": true, "includePromotedContent": true, "withCommunity": true, "withTweetQuoteCount": true, "withBirdwatchNotes": true, "withSuperFollowsUserFields": true, "withUserResults": true, "withBirdwatchPivots": true, "withReactionsMetadata": true, "withReactionsPerspective": true, "withSuperFollowsTweetFields": true, "withVoice": true, "cursor": "lwEAAPANHBn2LISAuc2L-YKWKILAo5XE1YKWKIaAqfXvpxIA8ACArN3LioeWKIbAvqnbroQSAOCyxYPxhZYohMC4zazfgwkAULnxjZaDPwDhvYW9v4KWKISAsu2-ioVRAPAZ-Yj6g5YojoCs1a65g5YoiMC5qYX1gpYojMC5tb6vgpYojsC9yf7Zi2MA8RC58dXMgpYoioCz9em6hJYogIC51bbjgpYoiICzxduxkABQsumypoIbAEGz0cGRGwBBubnZiC0A8Ai96eqQhZYokMCy4ZnVjJYogMC5_anChM8AULn1vrGEqwBBsqHkmGMAQLn97sGHAFGAsrnZ_s8AUaK9q8-DYwBB3ZLghVEAQM3S7oarAEK-mfKWYwBA5aHxkFoAQbDhgP4yAUG-3fKVUQBBsvW_uRIAUbmFsaOJMgEy1YvCbABA-c6chPwAQL61wdtfAWLAqInKnpDGAPAGsoGFliiUwL3Fm9OCliglAhIVDgAA"}'}, timeout=20)
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:42.303482+02:00", "raw_value": {"__typename": "Tweet", "rest_id": "1447364108471443460", "has_birdwatch_notes": false, "core": {"user_results": {"result": {"__typename": "User", "id": "VXNlcjo4ODM3MDE4NDA1MjkwMTg4ODA=", "rest_id": "883701840529018880", "affiliates_highlighted_label": {}, "legacy": {"created_at": "Sat Jul 08 14:58:31 +0000 2017", "default_profile": true, "default_profile_image": false, "description": "Love God, people, music and some sports", "entities": {"description": {"urls": []}}, "fast_followers_count": 0, "favourites_count": 11668, "followers_count": 128, "friends_count": 704, "has_custom_timelines": true, "is_translator": false, "listed_count": 0, "location": "United States", "media_count": 33, "name": "Titie Lambert", "normal_followers_count": 128, "pinned_tweet_ids_str": [], "profile_banner_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 36.48, "rgb": {"blue": 167, "green": 170, "red": 178}}, {"percentage": 30.58, "rgb": {"blue": 134, "green": 116, "red": 93}}, {"percentage": 17.02, "rgb": {"blue": 72, "green": 86, "red": 111}}, {"percentage": 3.98, "rgb": {"blue": 103, "green": 135, "red": 182}}, {"percentage": 2.56, "rgb": {"blue": 51, "green": 87, "red": 140}}]}}}}, "profile_banner_url": "https://pbs.twimg.com/profile_banners/883701840529018880/1586036460", "profile_image_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 42.54, "rgb": {"blue": 80, "green": 93, "red": 135}}, {"percentage": 25.32, "rgb": {"blue": 238, "green": 227, "red": 229}}, {"percentage": 12.95, "rgb": {"blue": 109, "green": 138, "red": 201}}, {"percentage": 7.84, "rgb": {"blue": 35, "green": 36, "red": 52}}, {"percentage": 3.42, "rgb": {"blue": 61, "green": 99, "red": 162}}]}}}}, "profile_image_url_https": "https://pbs.twimg.com/profile_images/1387618402173390849/vGXwxIIu_normal.jpg", "profile_interstitial_type": "", "protected": false, "screen_name": "Titie1017", "statuses_count": 4157, "translator_type": "none", "verified": false, "withheld_in_countries": []}, "super_follow_eligible": false, "super_followed_by": false, "super_following": false}}}, "legacy": {"created_at": "Mon Oct 11 00:51:08 +0000 2021", "conversation_id_str": "1447348840164564994", "display_text_range": [79, 131], "entities": {"user_mentions": [{"id_str": "1087289365544534016", "name": "Iga \u015awi\u0105tek", "screen_name": "iga_swiatek", "indices": [0, 12]}, {"id_str": "17158140", "name": "wta", "screen_name": "WTA", "indices": [13, 17]}, {"id_str": "1252575285293260800", "name": "Xiaomi Polska", "screen_name": "XiaomiPL", "indices": [18, 27]}, {"id_str": "603617274", "name": "Grupa PZU", "screen_name": "GrupaPZU", "indices": [28, 37]}, {"id_str": "3111250452", "name": "ASICS Tennis", "screen_name": "ASICSTennis", "indices": [38, 50]}, {"id_str": "30017071", "name": "BNP Paribas Open", "screen_name": "BNPPARIBASOPEN", "indices": [51, 66]}, {"id_str": "64391043", "name": "Tecnifibre", "screen_name": "tecnifibre", "indices": [67, 78]}], "urls": [], "hashtags": [], "symbols": []}, "favorite_count": 0, "favorited": false, "full_text": "@iga_swiatek @WTA @XiaomiPL @GrupaPZU @ASICSTennis @BNPPARIBASOPEN @tecnifibre Try to help \u201cRare Impact Fund\u201d. Same goals as yours.", "in_reply_to_screen_name": "iga_swiatek", "in_reply_to_status_id_str": "1447348840164564994", "in_reply_to_user_id_str": "1087289365544534016", "is_quote_status": false, "lang": "en", "quote_count": 0, "reply_count": 0, "retweet_count": 0, "retweeted": false, "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "user_id_str": "883701840529018880", "id_str": "1447364108471443460"}}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:42.303812+02:00", "raw_value": {"__typename": "Tweet", "rest_id": "1447364580842299393", "has_birdwatch_notes": false, "core": {"user_results": {"result": {"__typename": "User", "id": "VXNlcjo4ODM3MDE4NDA1MjkwMTg4ODA=", "rest_id": "883701840529018880", "affiliates_highlighted_label": {}, "legacy": {"created_at": "Sat Jul 08 14:58:31 +0000 2017", "default_profile": true, "default_profile_image": false, "description": "Love God, people, music and some sports", "entities": {"description": {"urls": []}}, "fast_followers_count": 0, "favourites_count": 11668, "followers_count": 128, "friends_count": 704, "has_custom_timelines": true, "is_translator": false, "listed_count": 0, "location": "United States", "media_count": 33, "name": "Titie Lambert", "normal_followers_count": 128, "pinned_tweet_ids_str": [], "profile_banner_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 36.48, "rgb": {"blue": 167, "green": 170, "red": 178}}, {"percentage": 30.58, "rgb": {"blue": 134, "green": 116, "red": 93}}, {"percentage": 17.02, "rgb": {"blue": 72, "green": 86, "red": 111}}, {"percentage": 3.98, "rgb": {"blue": 103, "green": 135, "red": 182}}, {"percentage": 2.56, "rgb": {"blue": 51, "green": 87, "red": 140}}]}}}}, "profile_banner_url": "https://pbs.twimg.com/profile_banners/883701840529018880/1586036460", "profile_image_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 42.54, "rgb": {"blue": 80, "green": 93, "red": 135}}, {"percentage": 25.32, "rgb": {"blue": 238, "green": 227, "red": 229}}, {"percentage": 12.95, "rgb": {"blue": 109, "green": 138, "red": 201}}, {"percentage": 7.84, "rgb": {"blue": 35, "green": 36, "red": 52}}, {"percentage": 3.42, "rgb": {"blue": 61, "green": 99, "red": 162}}]}}}}, "profile_image_url_https": "https://pbs.twimg.com/profile_images/1387618402173390849/vGXwxIIu_normal.jpg", "profile_interstitial_type": "", "protected": false, "screen_name": "Titie1017", "statuses_count": 4157, "translator_type": "none", "verified": false, "withheld_in_countries": []}, "super_follow_eligible": false, "super_followed_by": false, "super_following": false}}}, "card": {"rest_id": "https://t.co/xS0ZqOTRHm", "legacy": {"binding_values": [{"key": "description", "value": {"string_value": "BetterHelp is teaming up with Venus & WTA to provide $2,000,000 in free therapy to tennis fans worldwide.", "type": "STRING"}}, {"key": "domain", "value": {"string_value": "www.betterhelp.com", "type": "STRING"}}, {"key": "site", "value": {"scribe_key": "publisher_id", "type": "USER", "user_value": {"id_str": "1470241436", "path": []}}}, {"key": "vanity_url", "value": {"scribe_key": "vanity_url", "string_value": "betterhelp.com", "type": "STRING"}}, {"key": "title", "value": {"string_value": "BetterHelp - Show up for yourself with 1 month of free therapy", "type": "STRING"}}, {"key": "card_url", "value": {"scribe_key": "card_url", "string_value": "https://t.co/xS0ZqOTRHm", "type": "STRING"}}], "card_platform": {"platform": {"audience": {"name": "production"}, "device": {"name": "Swift", "version": "12"}}}, "name": "summary", "url": "https://t.co/xS0ZqOTRHm", "user_refs": [{"id": "VXNlcjoxNDcwMjQxNDM2", "rest_id": "1470241436", "affiliates_highlighted_label": {}, "legacy": {"created_at": "Thu May 30 17:18:13 +0000 2013", "default_profile": false, "default_profile_image": false, "description": "Therapy, made accessible.\nClick here to get started \u2193", "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "betterhelp.com/wmhd2021", "expanded_url": "http://betterhelp.com/wmhd2021", "url": "https://t.co/K3dL94soUU", "indices": [0, 23]}]}}, "fast_followers_count": 0, "favourites_count": 1277, "followers_count": 9959, "friends_count": 289, "has_custom_timelines": true, "is_translator": false, "listed_count": 73, "location": "", "media_count": 1148, "name": "BetterHelp", "normal_followers_count": 9959, "pinned_tweet_ids_str": ["1431277719250259974"], "profile_banner_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 51.76, "rgb": {"blue": 190, "green": 219, "red": 243}}, {"percentage": 16.62, "rgb": {"blue": 101, "green": 117, "red": 126}}, {"percentage": 13.37, "rgb": {"blue": 43, "green": 43, "red": 23}}, {"percentage": 13.3, "rgb": {"blue": 124, "green": 193, "red": 212}}, {"percentage": 2.54, "rgb": {"blue": 98, "green": 157, "red": 204}}]}}}}, "profile_banner_url": "https://pbs.twimg.com/profile_banners/1470241436/1540921341", "profile_image_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 89.0, "rgb": {"blue": 68, "green": 159, "red": 87}}, {"percentage": 10.35, "rgb": {"blue": 255, "green": 255, "red": 255}}, {"percentage": 0.67, "rgb": {"blue": 159, "green": 206, "red": 168}}]}}}}, "profile_image_url_https": "https://pbs.twimg.com/profile_images/637074894027558913/7PA8F5pU_normal.png", "profile_interstitial_type": "", "protected": false, "screen_name": "betterhelp", "statuses_count": 3746, "translator_type": "none", "url": "https://t.co/K3dL94soUU", "verified": false, "withheld_in_countries": []}, "super_follow_eligible": false, "super_followed_by": false, "super_following": false}]}}, "legacy": {"created_at": "Mon Oct 11 00:53:01 +0000 2021", "conversation_id_str": "1447348840164564994", "display_text_range": [79, 115], "entities": {"user_mentions": [{"id_str": "1087289365544534016", "name": "Iga \u015awi\u0105tek", "screen_name": "iga_swiatek", "indices": [0, 12]}, {"id_str": "17158140", "name": "wta", "screen_name": "WTA", "indices": [13, 17]}, {"id_str": "1252575285293260800", "name": "Xiaomi Polska", "screen_name": "XiaomiPL", "indices": [18, 27]}, {"id_str": "603617274", "name": "Grupa PZU", "screen_name": "GrupaPZU", "indices": [28, 37]}, {"id_str": "3111250452", "name": "ASICS Tennis", "screen_name": "ASICSTennis", "indices": [38, 50]}, {"id_str": "30017071", "name": "BNP Paribas Open", "screen_name": "BNPPARIBASOPEN", "indices": [51, 66]}, {"id_str": "64391043", "name": "Tecnifibre", "screen_name": "tecnifibre", "indices": [67, 78]}], "urls": [{"display_url": "betterhelp.com/Venus", "expanded_url": "http://betterhelp.com/Venus", "url": "https://t.co/xS0ZqOTRHm", "indices": [92, 115]}], "hashtags": [], "symbols": []}, "favorite_count": 0, "favorited": false, "full_text": "@iga_swiatek @WTA @XiaomiPL @GrupaPZU @ASICSTennis @BNPPARIBASOPEN @tecnifibre And there is https://t.co/xS0ZqOTRHm", "in_reply_to_screen_name": "iga_swiatek", "in_reply_to_status_id_str": "1447348840164564994", "in_reply_to_user_id_str": "1087289365544534016", "is_quote_status": false, "lang": "en", "possibly_sensitive": false, "possibly_sensitive_editable": true, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "retweeted": false, "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "user_id_str": "883701840529018880", "id_str": "1447364580842299393"}}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:42.303978+02:00", "raw_value": {"__typename": "Tweet", "rest_id": "1447385999244505091", "has_birdwatch_notes": false, "core": {"user_results": {"result": {"__typename": "User", "id": "VXNlcjoxMzYwODM1MjI0NTkxMDkzNzYy", "rest_id": "1360835224591093762", "affiliates_highlighted_label": {}, "legacy": {"created_at": "Sun Feb 14 06:17:33 +0000 2021", "default_profile": true, "default_profile_image": false, "description": "retired", "entities": {"description": {"urls": []}}, "fast_followers_count": 0, "favourites_count": 184, "followers_count": 1, "friends_count": 26, "has_custom_timelines": false, "is_translator": false, "listed_count": 0, "location": "", "media_count": 1, "name": "Mickey570", "normal_followers_count": 1, "pinned_tweet_ids_str": [], "profile_image_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 36.74, "rgb": {"blue": 216, "green": 220, "red": 221}}, {"percentage": 32.82, "rgb": {"blue": 110, "green": 154, "red": 190}}, {"percentage": 14.88, "rgb": {"blue": 26, "green": 54, "red": 117}}, {"percentage": 5.19, "rgb": {"blue": 3, "green": 4, "red": 4}}, {"percentage": 3.15, "rgb": {"blue": 64, "green": 111, "red": 185}}]}}}}, "profile_image_url_https": "https://pbs.twimg.com/profile_images/1360835674681835529/-HbSUegp_normal.jpg", "profile_interstitial_type": "", "protected": false, "screen_name": "Mickey5701", "statuses_count": 179, "translator_type": "none", "verified": false, "withheld_in_countries": []}, "super_follow_eligible": false, "super_followed_by": false, "super_following": false}}}, "legacy": {"created_at": "Mon Oct 11 02:18:08 +0000 2021", "conversation_id_str": "1447348840164564994", "display_text_range": [79, 96], "entities": {"user_mentions": [{"id_str": "1087289365544534016", "name": "Iga \u015awi\u0105tek", "screen_name": "iga_swiatek", "indices": [0, 12]}, {"id_str": "17158140", "name": "wta", "screen_name": "WTA", "indices": [13, 17]}, {"id_str": "1252575285293260800", "name": "Xiaomi Polska", "screen_name": "XiaomiPL", "indices": [18, 27]}, {"id_str": "603617274", "name": "Grupa PZU", "screen_name": "GrupaPZU", "indices": [28, 37]}, {"id_str": "3111250452", "name": "ASICS Tennis", "screen_name": "ASICSTennis", "indices": [38, 50]}, {"id_str": "30017071", "name": "BNP Paribas Open", "screen_name": "BNPPARIBASOPEN", "indices": [51, 66]}, {"id_str": "64391043", "name": "Tecnifibre", "screen_name": "tecnifibre", "indices": [67, 78]}], "urls": [], "hashtags": [], "symbols": []}, "favorite_count": 1, "favorited": false, "full_text": "@iga_swiatek @WTA @XiaomiPL @GrupaPZU @ASICSTennis @BNPPARIBASOPEN @tecnifibre Great person !!!!", "in_reply_to_screen_name": "iga_swiatek", "in_reply_to_status_id_str": "1447348840164564994", "in_reply_to_user_id_str": "1087289365544534016", "is_quote_status": false, "lang": "en", "quote_count": 0, "reply_count": 0, "retweet_count": 0, "retweeted": false, "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "user_id_str": "1360835224591093762", "id_str": "1447385999244505091"}}}
is_cursor True last_scrapped_zero False
need_guest_token True
run request RequestDetails(http_method=<HttpMethod.GET: 1>, url='https://twitter.com/i/api/graphql/kUnCMgMYZCR8GyRZz76IQg/TweetDetail', headers={'Authorization': 'Bearer AAAAAAAAAAAAAAAAAAAAANRILgAAAAAAnNwIzUejRCOuH5E6I8xnZz4puTs%3D1Zv7ttfk8LF81IUq16cHjhLTvJu4FA33AGWWjCpTnA', 'x-guest-token': '1448607906950168577'}, params={'variables': '{"focalTweetId": "1447348840164564994", "with_rux_injections": true, "includePromotedContent": true, "withCommunity": true, "withTweetQuoteCount": true, "withBirdwatchNotes": true, "withSuperFollowsUserFields": true, "withUserResults": true, "withBirdwatchPivots": true, "withReactionsMetadata": true, "withReactionsPerspective": true, "withSuperFollowsTweetFields": true, "withVoice": true, "cursor": "sgEAAPANHBn2L4SAuc2L-YKWKILAo5XE1YKWKIaAqfXvpxIA8ACArN3LioeWKIbAvqnbroQSAOCyxYPxhZYohMC4zazfgwkAULnxjZaDPwDhvYW9v4KWKISAsu2-ioVRAPAZ-Yj6g5YojoCs1a65g5YoiMC5qYX1gpYojMC5tb6vgpYojsC9yf7Zi2MA8RC58dXMgpYoioCz9em6hJYogIC51bbjgpYoiICzxduxkABQsumypoIbAEGz0cGRGwBBubnZiC0A8Ai96eqQhZYokMCy4ZnVjJYogMC5_anChFoAUL2duvmS2ABQufW-sYS0AEGyoeSYbABAuf3uwZAAUYCyudn-2ABRor2rz4NsAEHdkuCFWgBAzdLuhrQAQr6Z8pZsAEDlofGQYwBBsOGA_jsBQb7d8pVRAEGy9b-5EgBQuYWxo4lIAFGz2d6aiasAQaGf_4hNATLVi8J-AED5zpyEFwFAvrXB23oBYsCoicqekOEA8AaygYWWKJTAvcWb04KWKCUCEhUOAAA"}'}, timeout=20)
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:42.813060+02:00", "raw_value": {"__typename": "Tweet", "rest_id": "1447386084766322689", "has_birdwatch_notes": false, "core": {"user_results": {"result": {"__typename": "User", "id": "VXNlcjoxMzYwODM1MjI0NTkxMDkzNzYy", "rest_id": "1360835224591093762", "affiliates_highlighted_label": {}, "legacy": {"created_at": "Sun Feb 14 06:17:33 +0000 2021", "default_profile": true, "default_profile_image": false, "description": "retired", "entities": {"description": {"urls": []}}, "fast_followers_count": 0, "favourites_count": 184, "followers_count": 1, "friends_count": 26, "has_custom_timelines": false, "is_translator": false, "listed_count": 0, "location": "", "media_count": 1, "name": "Mickey570", "normal_followers_count": 1, "pinned_tweet_ids_str": [], "profile_image_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 36.74, "rgb": {"blue": 216, "green": 220, "red": 221}}, {"percentage": 32.82, "rgb": {"blue": 110, "green": 154, "red": 190}}, {"percentage": 14.88, "rgb": {"blue": 26, "green": 54, "red": 117}}, {"percentage": 5.19, "rgb": {"blue": 3, "green": 4, "red": 4}}, {"percentage": 3.15, "rgb": {"blue": 64, "green": 111, "red": 185}}]}}}}, "profile_image_url_https": "https://pbs.twimg.com/profile_images/1360835674681835529/-HbSUegp_normal.jpg", "profile_interstitial_type": "", "protected": false, "screen_name": "Mickey5701", "statuses_count": 179, "translator_type": "none", "verified": false, "withheld_in_countries": []}, "super_follow_eligible": false, "super_followed_by": false, "super_following": false}}}, "legacy": {"created_at": "Mon Oct 11 02:18:28 +0000 2021", "conversation_id_str": "1447348840164564994", "display_text_range": [79, 91], "entities": {"user_mentions": [{"id_str": "1087289365544534016", "name": "Iga \u015awi\u0105tek", "screen_name": "iga_swiatek", "indices": [0, 12]}, {"id_str": "17158140", "name": "wta", "screen_name": "WTA", "indices": [13, 17]}, {"id_str": "1252575285293260800", "name": "Xiaomi Polska", "screen_name": "XiaomiPL", "indices": [18, 27]}, {"id_str": "603617274", "name": "Grupa PZU", "screen_name": "GrupaPZU", "indices": [28, 37]}, {"id_str": "3111250452", "name": "ASICS Tennis", "screen_name": "ASICSTennis", "indices": [38, 50]}, {"id_str": "30017071", "name": "BNP Paribas Open", "screen_name": "BNPPARIBASOPEN", "indices": [51, 66]}, {"id_str": "64391043", "name": "Tecnifibre", "screen_name": "tecnifibre", "indices": [67, 78]}], "urls": [], "hashtags": [], "symbols": []}, "favorite_count": 1, "favorited": false, "full_text": "@iga_swiatek @WTA @XiaomiPL @GrupaPZU @ASICSTennis @BNPPARIBASOPEN @tecnifibre Great person", "in_reply_to_screen_name": "iga_swiatek", "in_reply_to_status_id_str": "1447348840164564994", "in_reply_to_user_id_str": "1087289365544534016", "is_quote_status": false, "lang": "en", "quote_count": 0, "reply_count": 0, "retweet_count": 0, "retweeted": false, "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "user_id_str": "1360835224591093762", "id_str": "1447386084766322689"}}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:42.813322+02:00", "raw_value": {"__typename": "Tweet", "rest_id": "1447386764969119745", "has_birdwatch_notes": false, "core": {"user_results": {"result": {"__typename": "User", "id": "VXNlcjo5ODkxMzY0NDA=", "rest_id": "989136440", "affiliates_highlighted_label": {}, "legacy": {"created_at": "Tue Dec 04 16:50:23 +0000 2012", "default_profile": false, "default_profile_image": false, "description": "B\u00f3g Honor Ojczyzna. Banuj\u0119 z marszu idiot\u00f3w, manipular\u00f3w, dezinformator\u00f3w i rezonator\u00f3w wrogiej Polsce narracji. Zosta\u0142o mi za ma\u0142o czasu, by czyta\u0107 te \u015bmieci.", "entities": {"description": {"urls": []}}, "fast_followers_count": 0, "favourites_count": 13504, "followers_count": 933, "friends_count": 894, "has_custom_timelines": true, "is_translator": false, "listed_count": 4, "location": "Warszawa", "media_count": 1964, "name": "Wuczkowski Piotr", "normal_followers_count": 933, "pinned_tweet_ids_str": ["1443554460014366724"], "profile_banner_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 50.74, "rgb": {"blue": 63, "green": 123, "red": 162}}, {"percentage": 17.15, "rgb": {"blue": 62, "green": 33, "red": 18}}, {"percentage": 11.3, "rgb": {"blue": 22, "green": 53, "red": 86}}, {"percentage": 7.21, "rgb": {"blue": 118, "green": 153, "red": 178}}, {"percentage": 2.43, "rgb": {"blue": 36, "green": 71, "red": 127}}]}}}}, "profile_banner_url": "https://pbs.twimg.com/profile_banners/989136440/1565854420", "profile_image_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 43.33, "rgb": {"blue": 125, "green": 135, "red": 143}}, {"percentage": 33.29, "rgb": {"blue": 40, "green": 46, "red": 56}}, {"percentage": 7.05, "rgb": {"blue": 48, "green": 39, "red": 31}}, {"percentage": 6.0, "rgb": {"blue": 41, "green": 61, "red": 95}}, {"percentage": 4.63, "rgb": {"blue": 184, "green": 157, "red": 132}}]}}}}, "profile_image_url_https": "https://pbs.twimg.com/profile_images/820964018257072128/iIblXhXo_normal.jpg", "profile_interstitial_type": "", "protected": false, "screen_name": "PiotrWu1970", "statuses_count": 22653, "translator_type": "none", "verified": false, "withheld_in_countries": []}, "super_follow_eligible": false, "super_followed_by": false, "super_following": false}}}, "legacy": {"created_at": "Mon Oct 11 02:21:10 +0000 2021", "conversation_id_str": "1447348840164564994", "display_text_range": [79, 342], "entities": {"user_mentions": [{"id_str": "1087289365544534016", "name": "Iga \u015awi\u0105tek", "screen_name": "iga_swiatek", "indices": [0, 12]}, {"id_str": "17158140", "name": "wta", "screen_name": "WTA", "indices": [13, 17]}, {"id_str": "1252575285293260800", "name": "Xiaomi Polska", "screen_name": "XiaomiPL", "indices": [18, 27]}, {"id_str": "603617274", "name": "Grupa PZU", "screen_name": "GrupaPZU", "indices": [28, 37]}, {"id_str": "3111250452", "name": "ASICS Tennis", "screen_name": "ASICSTennis", "indices": [38, 50]}, {"id_str": "30017071", "name": "BNP Paribas Open", "screen_name": "BNPPARIBASOPEN", "indices": [51, 66]}, {"id_str": "64391043", "name": "Tecnifibre", "screen_name": "tecnifibre", "indices": [67, 78]}], "urls": [{"display_url": "wotkta.waw.pl/index.html", "expanded_url": "http://www.wotkta.waw.pl/index.html", "url": "https://t.co/y3kLFszTHV", "indices": [319, 342]}], "hashtags": [], "symbols": []}, "favorite_count": 8, "favorited": false, "full_text": "@iga_swiatek @WTA @XiaomiPL @GrupaPZU @ASICSTennis @BNPPARIBASOPEN @tecnifibre Iga, je\u015bli zdecydujesz, by pom\u00f3c konkretnie i lokalnie, polecam warszawski oddzia\u0142 Krajowego Towarzystwa Autyzmu i ich Warsztat Terapii Zaj\u0119ciowej. KTA to jedna z najstarszych NGO w wolnej Polsce - dzia\u0142a od 1990. Pomaga osobom z autyzmem: https://t.co/y3kLFszTHV", "in_reply_to_screen_name": "iga_swiatek", "in_reply_to_status_id_str": "1447348840164564994", "in_reply_to_user_id_str": "1087289365544534016", "is_quote_status": false, "lang": "pl", "possibly_sensitive": false, "possibly_sensitive_editable": true, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "retweeted": false, "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "user_id_str": "989136440", "id_str": "1447386764969119745"}}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:42.813528+02:00", "raw_value": {"__typename": "Tweet", "rest_id": "1447386843364962308", "has_birdwatch_notes": false, "core": {"user_results": {"result": {"__typename": "User", "id": "VXNlcjo1NDYwNTEyMzA=", "rest_id": "546051230", "affiliates_highlighted_label": {}, "legacy": {"created_at": "Thu Apr 05 15:19:00 +0000 2012", "default_profile": false, "default_profile_image": false, "description": "\ud83d\udc68\u200d\ud83c\udf93 Asst Prof @AmericanU \n\ud83e\uddd9 Fellow @InternetGov / @AUAntiracismCtr\n\u270d\ufe0f Associate Ed @JITP_APSA\n\u2328\ufe0f #DigitalCulture #DataScience #SocialMedia\n\ud83e\udec2 #SocialJustice", "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "saifshahin.com", "expanded_url": "http://saifshahin.com", "url": "https://t.co/t83cUCvlnj", "indices": [0, 23]}]}}, "fast_followers_count": 0, "favourites_count": 1346, "followers_count": 645, "friends_count": 585, "has_custom_timelines": false, "is_translator": false, "listed_count": 21, "location": "Washington DC", "media_count": 120, "name": "Saif Shahin", "normal_followers_count": 645, "pinned_tweet_ids_str": ["1440301088117178386"], "profile_banner_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 44.8, "rgb": {"blue": 183, "green": 198, "red": 214}}, {"percentage": 21.88, "rgb": {"blue": 15, "green": 34, "red": 55}}, {"percentage": 19.24, "rgb": {"blue": 23, "green": 81, "red": 102}}, {"percentage": 12.99, "rgb": {"blue": 84, "green": 105, "red": 129}}, {"percentage": 1.56, "rgb": {"blue": 97, "green": 151, "red": 181}}]}}}}, "profile_banner_url": "https://pbs.twimg.com/profile_banners/546051230/1596335767", "profile_image_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 46.31, "rgb": {"blue": 172, "green": 189, "red": 192}}, {"percentage": 14.18, "rgb": {"blue": 130, "green": 89, "red": 48}}, {"percentage": 9.31, "rgb": {"blue": 190, "green": 187, "red": 182}}, {"percentage": 6.26, "rgb": {"blue": 31, "green": 26, "red": 87}}, {"percentage": 4.79, "rgb": {"blue": 37, "green": 37, "red": 40}}]}}}}, "profile_image_url_https": "https://pbs.twimg.com/profile_images/1326360322727358464/PGToZfJ6_normal.jpg", "profile_interstitial_type": "", "protected": false, "screen_name": "shahin_saif", "statuses_count": 1089, "translator_type": "none", "url": "https://t.co/t83cUCvlnj", "verified": false, "withheld_in_countries": []}, "super_follow_eligible": false, "super_followed_by": false, "super_following": false}}}, "legacy": {"created_at": "Mon Oct 11 02:21:29 +0000 2021", "conversation_id_str": "1447348840164564994", "display_text_range": [79, 359], "entities": {"user_mentions": [{"id_str": "1087289365544534016", "name": "Iga \u015awi\u0105tek", "screen_name": "iga_swiatek", "indices": [0, 12]}, {"id_str": "17158140", "name": "wta", "screen_name": "WTA", "indices": [13, 17]}, {"id_str": "1252575285293260800", "name": "Xiaomi Polska", "screen_name": "XiaomiPL", "indices": [18, 27]}, {"id_str": "603617274", "name": "Grupa PZU", "screen_name": "GrupaPZU", "indices": [28, 37]}, {"id_str": "3111250452", "name": "ASICS Tennis", "screen_name": "ASICSTennis", "indices": [38, 50]}, {"id_str": "30017071", "name": "BNP Paribas Open", "screen_name": "BNPPARIBASOPEN", "indices": [51, 66]}, {"id_str": "64391043", "name": "Tecnifibre", "screen_name": "tecnifibre", "indices": [67, 78]}, {"id_str": "4342763967", "name": "Marcus Daniell OLY", "screen_name": "MarcusDaniell", "indices": [171, 185]}], "urls": [], "hashtags": [], "symbols": []}, "favorite_count": 4, "favorited": false, "full_text": "@iga_swiatek @WTA @XiaomiPL @GrupaPZU @ASICSTennis @BNPPARIBASOPEN @tecnifibre This is such a wonderful post-match post. I would recommend working with Kiwi tennis player @MarcusDaniell's High Impact Athletes, which identifies reliable charities for athletes to support. Not sure if they have tie-ups with mental health charities, but hopefully they can help.", "in_reply_to_screen_name": "iga_swiatek", "in_reply_to_status_id_str": "1447348840164564994", "in_reply_to_user_id_str": "1087289365544534016", "is_quote_status": false, "lang": "en", "quote_count": 0, "reply_count": 1, "retweet_count": 0, "retweeted": false, "source": "<a href=\"https://mobile.twitter.com\" rel=\"nofollow\">Twitter Web App</a>", "user_id_str": "546051230", "id_str": "1447386843364962308"}}}
is_cursor True last_scrapped_zero False
need_guest_token True
run request RequestDetails(http_method=<HttpMethod.GET: 1>, url='https://twitter.com/i/api/graphql/kUnCMgMYZCR8GyRZz76IQg/TweetDetail', headers={'Authorization': 'Bearer AAAAAAAAAAAAAAAAAAAAANRILgAAAAAAnNwIzUejRCOuH5E6I8xnZz4puTs%3D1Zv7ttfk8LF81IUq16cHjhLTvJu4FA33AGWWjCpTnA', 'x-guest-token': '1448607906950168577'}, params={'variables': '{"focalTweetId": "1447348840164564994", "with_rux_injections": true, "includePromotedContent": true, "withCommunity": true, "withTweetQuoteCount": true, "withBirdwatchNotes": true, "withSuperFollowsUserFields": true, "withUserResults": true, "withBirdwatchPivots": true, "withReactionsMetadata": true, "withReactionsPerspective": true, "withSuperFollowsTweetFields": true, "withVoice": true, "cursor": "zQEAAPANHBn2MoSAuc2L-YKWKILAo5XE1YKWKIaAqfXvpxIA8ACArN3LioeWKIbAvqnbroQSAOCyxYPxhZYohMC4zazfgwkAULnxjZaDPwDxCL2Fvb-CliiIwL21y6qTliiEgLLtvoqFWgDQ-Yj6g5YojoCs1a65gyQA8Ai5qYX1gpYojMC5tb6vgpYojsC9yf7Zi2wA8Ae58dXMgpYoioCz9em6hJYogIC51bbjWgBRgLPF27GZAFCy6bKmghsAQbPRwZEbAEG5udmILQDwCL3p6pCFliiQwLLhmdWMliiAwLn9qcKEWgBQvZ26-ZLhAFC59b6xhL0AQbKh5JhsAEC5_e7BkABRgLK52f7hAFGivavPg2wAQd2S4IVaAEDN0u6GtABCvpnylmwAQOWh8ZBjAEGw4YD-RAFBvt3ylVEAQbL1v7kSAFCwqYOmkwkAULi1t_6SCQBQuYWxo4laAFGz2d6aib0AQaGf_4hoATLVi8KQAED5zpyEKQFAvrXB25UBYsCoicqekPMA8AaygYWWKJTAvcWb04KWKCUCEhUOAAA"}'}, timeout=20)
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:43.268157+02:00", "raw_value": {"__typename": "Tweet", "rest_id": "1447390680901431298", "has_birdwatch_notes": false, "core": {"user_results": {"result": {"__typename": "User", "id": "VXNlcjoyMDUyNzYzNg==", "rest_id": "20527636", "affiliates_highlighted_label": {}, "legacy": {"created_at": "Tue Feb 10 17:20:40 +0000 2009", "default_profile": false, "default_profile_image": false, "description": "I used to tweet Rafa news and typos, but now I just tweet typos. (Still a Rafa fan, though)", "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "nadalnews.com", "expanded_url": "http://www.nadalnews.com", "url": "http://t.co/lxDyY2FVR5", "indices": [0, 22]}]}}, "fast_followers_count": 0, "favourites_count": 49, "followers_count": 22420, "friends_count": 383, "has_custom_timelines": false, "is_translator": false, "listed_count": 509, "location": "", "media_count": 2898, "name": "Nadal News", "normal_followers_count": 22420, "pinned_tweet_ids_str": [], "profile_banner_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 42.61, "rgb": {"blue": 37, "green": 37, "red": 37}}, {"percentage": 33.41, "rgb": {"blue": 218, "green": 218, "red": 218}}]}}}}, "profile_banner_url": "https://pbs.twimg.com/profile_banners/20527636/1399150513", "profile_image_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 46.56, "rgb": {"blue": 31, "green": 31, "red": 31}}, {"percentage": 35.03, "rgb": {"blue": 206, "green": 206, "red": 206}}]}}}}, "profile_image_url_https": "https://pbs.twimg.com/profile_images/463043884293947392/VjABcQK9_normal.jpeg", "profile_interstitial_type": "", "protected": false, "screen_name": "nadalnews", "statuses_count": 115528, "translator_type": "none", "url": "http://t.co/lxDyY2FVR5", "verified": false, "withheld_in_countries": []}, "super_follow_eligible": false, "super_followed_by": false, "super_following": false}}}, "legacy": {"created_at": "Mon Oct 11 02:36:44 +0000 2021", "conversation_id_str": "1447348840164564994", "display_text_range": [79, 242], "entities": {"user_mentions": [{"id_str": "1087289365544534016", "name": "Iga \u015awi\u0105tek", "screen_name": "iga_swiatek", "indices": [0, 12]}, {"id_str": "17158140", "name": "wta", "screen_name": "WTA", "indices": [13, 17]}, {"id_str": "1252575285293260800", "name": "Xiaomi Polska", "screen_name": "XiaomiPL", "indices": [18, 27]}, {"id_str": "603617274", "name": "Grupa PZU", "screen_name": "GrupaPZU", "indices": [28, 37]}, {"id_str": "3111250452", "name": "ASICS Tennis", "screen_name": "ASICSTennis", "indices": [38, 50]}, {"id_str": "30017071", "name": "BNP Paribas Open", "screen_name": "BNPPARIBASOPEN", "indices": [51, 66]}, {"id_str": "64391043", "name": "Tecnifibre", "screen_name": "tecnifibre", "indices": [67, 78]}], "urls": [{"display_url": "nami.org/Home", "expanded_url": "https://nami.org/Home", "url": "https://t.co/iQap7nfUiQ", "indices": [128, 151]}], "hashtags": [], "symbols": []}, "favorite_count": 7, "favorited": false, "full_text": "@iga_swiatek @WTA @XiaomiPL @GrupaPZU @ASICSTennis @BNPPARIBASOPEN @tecnifibre What a lovely thing to do. I would suggest NAMI (https://t.co/iQap7nfUiQ), but that is a US grassroots organization. I don't know if there is an international one.", "in_reply_to_screen_name": "iga_swiatek", "in_reply_to_status_id_str": "1447348840164564994", "in_reply_to_user_id_str": "1087289365544534016", "is_quote_status": false, "lang": "en", "possibly_sensitive": false, "possibly_sensitive_editable": true, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "retweeted": false, "source": "<a href=\"http://www.samruston.co.uk\" rel=\"nofollow\">Flamingo for Android</a>", "user_id_str": "20527636", "id_str": "1447390680901431298"}}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:43.268389+02:00", "raw_value": {"__typename": "Tweet", "rest_id": "1447394319824928773", "has_birdwatch_notes": false, "core": {"user_results": {"result": {"__typename": "User", "id": "VXNlcjo0MzY3NzkyMQ==", "rest_id": "43677921", "affiliates_highlighted_label": {}, "legacy": {"created_at": "Sun May 31 11:54:29 +0000 2009", "default_profile": false, "default_profile_image": false, "description": "tennis fans, #ynwa", "entities": {"description": {"urls": []}}, "fast_followers_count": 0, "favourites_count": 7525, "followers_count": 370, "friends_count": 200, "has_custom_timelines": true, "is_translator": false, "listed_count": 1, "location": "", "media_count": 186, "name": ".", "normal_followers_count": 370, "pinned_tweet_ids_str": ["1333273483460059136"], "profile_image_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 58.43, "rgb": {"blue": 172, "green": 177, "red": 179}}, {"percentage": 32.92, "rgb": {"blue": 52, "green": 62, "red": 60}}, {"percentage": 6.18, "rgb": {"blue": 105, "green": 93, "red": 90}}, {"percentage": 1.87, "rgb": {"blue": 78, "green": 94, "red": 135}}, {"percentage": 0.56, "rgb": {"blue": 45, "green": 70, "red": 101}}]}}}}, "profile_image_url_https": "https://pbs.twimg.com/profile_images/1448282541924909058/LNOe9BsQ_normal.jpg", "profile_interstitial_type": "", "protected": false, "screen_name": "faturrs", "statuses_count": 29469, "translator_type": "none", "verified": false, "withheld_in_countries": []}, "super_follow_eligible": false, "super_followed_by": false, "super_following": false}}}, "legacy": {"created_at": "Mon Oct 11 02:51:11 +0000 2021", "conversation_id_str": "1447348840164564994", "display_text_range": [79, 109], "entities": {"user_mentions": [{"id_str": "1087289365544534016", "name": "Iga \u015awi\u0105tek", "screen_name": "iga_swiatek", "indices": [0, 12]}, {"id_str": "17158140", "name": "wta", "screen_name": "WTA", "indices": [13, 17]}, {"id_str": "1252575285293260800", "name": "Xiaomi Polska", "screen_name": "XiaomiPL", "indices": [18, 27]}, {"id_str": "603617274", "name": "Grupa PZU", "screen_name": "GrupaPZU", "indices": [28, 37]}, {"id_str": "3111250452", "name": "ASICS Tennis", "screen_name": "ASICSTennis", "indices": [38, 50]}, {"id_str": "30017071", "name": "BNP Paribas Open", "screen_name": "BNPPARIBASOPEN", "indices": [51, 66]}, {"id_str": "64391043", "name": "Tecnifibre", "screen_name": "tecnifibre", "indices": [67, 78]}], "urls": [], "hashtags": [], "symbols": []}, "favorite_count": 1, "favorited": false, "full_text": "@iga_swiatek @WTA @XiaomiPL @GrupaPZU @ASICSTennis @BNPPARIBASOPEN @tecnifibre this is truly remarkable Iga \u2764", "in_reply_to_screen_name": "iga_swiatek", "in_reply_to_status_id_str": "1447348840164564994", "in_reply_to_user_id_str": "1087289365544534016", "is_quote_status": false, "lang": "en", "quote_count": 0, "reply_count": 0, "retweet_count": 0, "retweeted": false, "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "user_id_str": "43677921", "id_str": "1447394319824928773"}}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:43.268605+02:00", "raw_value": {"__typename": "Tweet", "rest_id": "1447401664303058944", "has_birdwatch_notes": false, "core": {"user_results": {"result": {"__typename": "User", "id": "VXNlcjo3NzgwNjMwMzU4MDYxMzAxNzY=", "rest_id": "778063035806130176", "affiliates_highlighted_label": {}, "legacy": {"created_at": "Tue Sep 20 02:47:38 +0000 2016", "default_profile": true, "default_profile_image": true, "description": "", "entities": {"description": {"urls": []}}, "fast_followers_count": 0, "favourites_count": 16194, "followers_count": 11, "friends_count": 51, "has_custom_timelines": false, "is_translator": false, "listed_count": 0, "location": "", "media_count": 0, "name": "Branka calija", "normal_followers_count": 11, "pinned_tweet_ids_str": [], "profile_image_url_https": "https://abs.twimg.com/sticky/default_profile_images/default_profile_normal.png", "profile_interstitial_type": "", "protected": false, "screen_name": "CalijaBranka", "statuses_count": 162, "translator_type": "none", "verified": false, "withheld_in_countries": []}, "super_follow_eligible": false, "super_followed_by": false, "super_following": false}}}, "legacy": {"created_at": "Mon Oct 11 03:20:22 +0000 2021", "conversation_id_str": "1447348840164564994", "display_text_range": [79, 82], "entities": {"user_mentions": [{"id_str": "1087289365544534016", "name": "Iga \u015awi\u0105tek", "screen_name": "iga_swiatek", "indices": [0, 12]}, {"id_str": "17158140", "name": "wta", "screen_name": "WTA", "indices": [13, 17]}, {"id_str": "1252575285293260800", "name": "Xiaomi Polska", "screen_name": "XiaomiPL", "indices": [18, 27]}, {"id_str": "603617274", "name": "Grupa PZU", "screen_name": "GrupaPZU", "indices": [28, 37]}, {"id_str": "3111250452", "name": "ASICS Tennis", "screen_name": "ASICSTennis", "indices": [38, 50]}, {"id_str": "30017071", "name": "BNP Paribas Open", "screen_name": "BNPPARIBASOPEN", "indices": [51, 66]}, {"id_str": "64391043", "name": "Tecnifibre", "screen_name": "tecnifibre", "indices": [67, 78]}], "urls": [], "hashtags": [], "symbols": []}, "favorite_count": 0, "favorited": false, "full_text": "@iga_swiatek @WTA @XiaomiPL @GrupaPZU @ASICSTennis @BNPPARIBASOPEN @tecnifibre \ud83d\udc4f\ud83d\udc4f\ud83d\udc4f", "in_reply_to_screen_name": "iga_swiatek", "in_reply_to_status_id_str": "1447348840164564994", "in_reply_to_user_id_str": "1087289365544534016", "is_quote_status": false, "lang": "und", "quote_count": 0, "reply_count": 0, "retweet_count": 0, "retweeted": false, "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "user_id_str": "778063035806130176", "id_str": "1447401664303058944"}}}
is_cursor True last_scrapped_zero False
need_guest_token True
run request RequestDetails(http_method=<HttpMethod.GET: 1>, url='https://twitter.com/i/api/graphql/kUnCMgMYZCR8GyRZz76IQg/TweetDetail', headers={'Authorization': 'Bearer AAAAAAAAAAAAAAAAAAAAANRILgAAAAAAnNwIzUejRCOuH5E6I8xnZz4puTs%3D1Zv7ttfk8LF81IUq16cHjhLTvJu4FA33AGWWjCpTnA', 'x-guest-token': '1448607906950168577'}, params={'variables': '{"focalTweetId": "1447348840164564994", "with_rux_injections": true, "includePromotedContent": true, "withCommunity": true, "withTweetQuoteCount": true, "withBirdwatchNotes": true, "withSuperFollowsUserFields": true, "withUserResults": true, "withBirdwatchPivots": true, "withReactionsMetadata": true, "withReactionsPerspective": true, "withSuperFollowsTweetFields": true, "withVoice": true, "cursor": "6AEAAPANHBn2NYSAuc2L-YKWKILAo5XE1YKWKIaAqfXvpxIA8ACArN3LioeWKIbAvqnbroQSAPAIssWD8YWWKITAuM2s34OWKIDAvoGkiZoSAFC58Y2Wg0gA8Qi9hb2_gpYoiMC9tcuqk5YohICy7b6KhWMA0PmI-oOWKI6ArNWuuYMkAPAIuamF9YKWKIzAubW-r4KWKI7Avcn-2Yt1APAHufHVzIKWKIqAs_XpuoSWKICAudW241oAUYCzxduxogBQsumypoIbAEGz0cGRGwBBubnZiC0A4L3p6pCFliiQwLLhmdWMqwBQuf2pwoRaAFC9nbr5kuoAULn1vrGEvQBBsqHkmGwAQLn97sGQAFGAsrnZ_uoAUaK9q8-DbABB3ZLghVoAQM3S7oa0AFC-mfKWhDYAUaqx492WGwBA5aHxkGwAQbDhgP5WAUG-3fKVWgBBsvW_uRIAULCpg6aTCQBQuLW3_pIJAFC5hbGjiWMAUbPZ3pqJxgBBoZ__iHoBMtWLwpkAQPnOnIQyAUC-tcHbpwFiwKiJyp6Q_ADBsoGFliiUwL3Fm9OCjAHQpfuJlZYoJQISFQ4AAA"}'}, timeout=20)
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:43.709397+02:00", "raw_value": {"__typename": "Tweet", "rest_id": "1447401697710592007", "has_birdwatch_notes": false, "core": {"user_results": {"result": {"__typename": "User", "id": "VXNlcjoxMzc3NjExMjM0OTAwNjM1NjU0", "rest_id": "1377611234900635654", "affiliates_highlighted_label": {}, "legacy": {"created_at": "Thu Apr 01 13:18:18 +0000 2021", "default_profile": true, "default_profile_image": false, "description": "MPH Student, Healthcare Advocate, and Tennis Fan/Coach", "entities": {"description": {"urls": []}}, "fast_followers_count": 0, "favourites_count": 1080, "followers_count": 13, "friends_count": 394, "has_custom_timelines": false, "is_translator": false, "listed_count": 0, "location": "", "media_count": 2, "name": "Michael J. Menzies", "normal_followers_count": 13, "pinned_tweet_ids_str": [], "profile_banner_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 34.72, "rgb": {"blue": 22, "green": 25, "red": 31}}, {"percentage": 25.62, "rgb": {"blue": 129, "green": 158, "red": 175}}, {"percentage": 9.88, "rgb": {"blue": 179, "green": 171, "red": 178}}, {"percentage": 6.05, "rgb": {"blue": 56, "green": 82, "red": 122}}, {"percentage": 2.65, "rgb": {"blue": 46, "green": 46, "red": 122}}]}}}}, "profile_banner_url": "https://pbs.twimg.com/profile_banners/1377611234900635654/1629675333", "profile_image_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 38.26, "rgb": {"blue": 37, "green": 21, "red": 15}}, {"percentage": 30.81, "rgb": {"blue": 175, "green": 170, "red": 166}}, {"percentage": 17.33, "rgb": {"blue": 61, "green": 27, "red": 4}}, {"percentage": 2.65, "rgb": {"blue": 118, "green": 145, "red": 194}}, {"percentage": 2.0, "rgb": {"blue": 234, "green": 181, "red": 155}}]}}}}, "profile_image_url_https": "https://pbs.twimg.com/profile_images/1377611471975251971/nXYW9uaF_normal.jpg", "profile_interstitial_type": "", "protected": false, "screen_name": "mjmenzies88", "statuses_count": 55, "translator_type": "none", "verified": false, "withheld_in_countries": []}, "super_follow_eligible": false, "super_followed_by": false, "super_following": false}}}, "legacy": {"created_at": "Mon Oct 11 03:20:30 +0000 2021", "conversation_id_str": "1447348840164564994", "display_text_range": [79, 212], "entities": {"user_mentions": [{"id_str": "1087289365544534016", "name": "Iga \u015awi\u0105tek", "screen_name": "iga_swiatek", "indices": [0, 12]}, {"id_str": "17158140", "name": "wta", "screen_name": "WTA", "indices": [13, 17]}, {"id_str": "1252575285293260800", "name": "Xiaomi Polska", "screen_name": "XiaomiPL", "indices": [18, 27]}, {"id_str": "603617274", "name": "Grupa PZU", "screen_name": "GrupaPZU", "indices": [28, 37]}, {"id_str": "3111250452", "name": "ASICS Tennis", "screen_name": "ASICSTennis", "indices": [38, 50]}, {"id_str": "30017071", "name": "BNP Paribas Open", "screen_name": "BNPPARIBASOPEN", "indices": [51, 66]}, {"id_str": "64391043", "name": "Tecnifibre", "screen_name": "tecnifibre", "indices": [67, 78]}, {"id_str": "24178302", "name": "NAMI", "screen_name": "NAMICommunicate", "indices": [196, 212]}], "urls": [], "hashtags": [], "symbols": []}, "favorite_count": 3, "favorited": false, "full_text": "@iga_swiatek @WTA @XiaomiPL @GrupaPZU @ASICSTennis @BNPPARIBASOPEN @tecnifibre NAMI is a wonderful organization dedicated to helping those with mental illnesses. Please consider donating to them! @NAMICommunicate", "in_reply_to_screen_name": "iga_swiatek", "in_reply_to_status_id_str": "1447348840164564994", "in_reply_to_user_id_str": "1087289365544534016", "is_quote_status": false, "lang": "en", "quote_count": 0, "reply_count": 0, "retweet_count": 0, "retweeted": false, "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "user_id_str": "1377611234900635654", "id_str": "1447401697710592007"}}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:43.709662+02:00", "raw_value": {"__typename": "Tweet", "rest_id": "1447405919592091652", "has_birdwatch_notes": false, "core": {"user_results": {"result": {"__typename": "User", "id": "VXNlcjo5OTIzMjc1NjU5Mjk5NTUzMjk=", "rest_id": "992327565929955329", "affiliates_highlighted_label": {}, "legacy": {"created_at": "Fri May 04 08:58:23 +0000 2018", "default_profile": true, "default_profile_image": false, "description": "\u533b\u7642\u5f93\u4e8b\u8005 \u300aHealth care worker\u300b\ud83d\udc89 \u3010@DjokerNole \u3011\ud83c\uddf7\ud83c\uddf8\ud83c\udfbe\u3010@iga_swiatek\u3011\ud83c\uddf5\ud83c\uddf1\ud83c\udfbe \u3010@jelenadjokovic\u3011\ud83d\udcda\u300a@novakfoundation \u300b\u2728 \ud83c\uddeb\ud83c\uddf7On n'a au'une vie \ud83d\udc4d | Nitto ATP Finals \ud83c\uddee\ud83c\uddf9", "entities": {"description": {"urls": []}}, "fast_followers_count": 0, "favourites_count": 100336, "followers_count": 693, "friends_count": 685, "has_custom_timelines": false, "is_translator": false, "listed_count": 2, "location": "Japan", "media_count": 328, "name": "Wai_Wai 03", "normal_followers_count": 693, "pinned_tweet_ids_str": ["1422914703894876160"], "profile_banner_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 30.89, "rgb": {"blue": 231, "green": 226, "red": 151}}, {"percentage": 28.82, "rgb": {"blue": 35, "green": 34, "red": 37}}, {"percentage": 9.57, "rgb": {"blue": 222, "green": 135, "red": 86}}, {"percentage": 7.49, "rgb": {"blue": 161, "green": 64, "red": 29}}, {"percentage": 3.89, "rgb": {"blue": 79, "green": 43, "red": 32}}]}}}}, "profile_banner_url": "https://pbs.twimg.com/profile_banners/992327565929955329/1632819113", "profile_image_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 73.3, "rgb": {"blue": 114, "green": 140, "red": 167}}, {"percentage": 10.19, "rgb": {"blue": 49, "green": 64, "red": 99}}, {"percentage": 9.47, "rgb": {"blue": 48, "green": 40, "red": 144}}, {"percentage": 2.62, "rgb": {"blue": 87, "green": 108, "red": 178}}, {"percentage": 2.33, "rgb": {"blue": 118, "green": 115, "red": 246}}]}}}}, "profile_image_url_https": "https://pbs.twimg.com/profile_images/1414927496273752064/UJ_Y_GjL_normal.jpg", "profile_interstitial_type": "", "protected": false, "screen_name": "mito_kainattou", "statuses_count": 31879, "translator_type": "none", "verified": false, "withheld_in_countries": []}, "super_follow_eligible": false, "super_followed_by": false, "super_following": false}}}, "legacy": {"created_at": "Mon Oct 11 03:37:17 +0000 2021", "conversation_id_str": "1447348840164564994", "display_text_range": [79, 109], "entities": {"user_mentions": [{"id_str": "1087289365544534016", "name": "Iga \u015awi\u0105tek", "screen_name": "iga_swiatek", "indices": [0, 12]}, {"id_str": "17158140", "name": "wta", "screen_name": "WTA", "indices": [13, 17]}, {"id_str": "1252575285293260800", "name": "Xiaomi Polska", "screen_name": "XiaomiPL", "indices": [18, 27]}, {"id_str": "603617274", "name": "Grupa PZU", "screen_name": "GrupaPZU", "indices": [28, 37]}, {"id_str": "3111250452", "name": "ASICS Tennis", "screen_name": "ASICSTennis", "indices": [38, 50]}, {"id_str": "30017071", "name": "BNP Paribas Open", "screen_name": "BNPPARIBASOPEN", "indices": [51, 66]}, {"id_str": "64391043", "name": "Tecnifibre", "screen_name": "tecnifibre", "indices": [67, 78]}], "urls": [], "hashtags": [], "symbols": []}, "favorite_count": 1, "favorited": false, "full_text": "@iga_swiatek @WTA @XiaomiPL @GrupaPZU @ASICSTennis @BNPPARIBASOPEN @tecnifibre that's amazing.\nI respect you.", "in_reply_to_screen_name": "iga_swiatek", "in_reply_to_status_id_str": "1447348840164564994", "in_reply_to_user_id_str": "1087289365544534016", "is_quote_status": false, "lang": "en", "quote_count": 0, "reply_count": 0, "retweet_count": 0, "retweeted": false, "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "user_id_str": "992327565929955329", "id_str": "1447405919592091652"}}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:43.709947+02:00", "raw_value": {"__typename": "Tweet", "rest_id": "1447412733062926345", "has_birdwatch_notes": false, "core": {"user_results": {"result": {"__typename": "User", "id": "VXNlcjoxNTU4NDIwNjM=", "rest_id": "155842063", "affiliates_highlighted_label": {}, "legacy": {"created_at": "Tue Jun 15 08:49:24 +0000 2010", "default_profile": true, "default_profile_image": false, "description": "Follower of common sense ...", "entities": {"description": {"urls": []}}, "fast_followers_count": 0, "favourites_count": 18110, "followers_count": 1272, "friends_count": 2950, "has_custom_timelines": true, "is_translator": false, "listed_count": 4, "location": "Bielsko-Bia\u0142a, Polska", "media_count": 201, "name": "Andrzej Bur\u017ca #Ruch Wsp\u00f3lna Polska", "normal_followers_count": 1272, "pinned_tweet_ids_str": [], "profile_banner_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 59.08, "rgb": {"blue": 12, "green": 8, "red": 10}}, {"percentage": 13.41, "rgb": {"blue": 183, "green": 170, "red": 166}}, {"percentage": 10.68, "rgb": {"blue": 67, "green": 88, "red": 196}}, {"percentage": 4.54, "rgb": {"blue": 40, "green": 48, "red": 95}}, {"percentage": 3.4, "rgb": {"blue": 133, "green": 91, "red": 81}}]}}}}, "profile_banner_url": "https://pbs.twimg.com/profile_banners/155842063/1603976002", "profile_image_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 33.33, "rgb": {"blue": 236, "green": 245, "red": 245}}, {"percentage": 19.38, "rgb": {"blue": 85, "green": 73, "red": 70}}, {"percentage": 10.36, "rgb": {"blue": 110, "green": 127, "red": 178}}, {"percentage": 7.97, "rgb": {"blue": 234, "green": 251, "red": 46}}, {"percentage": 7.48, "rgb": {"blue": 116, "green": 198, "red": 168}}]}}}}, "profile_image_url_https": "https://pbs.twimg.com/profile_images/1287660387459108867/gJlnLuEL_normal.jpg", "profile_interstitial_type": "", "protected": false, "screen_name": "anburza", "statuses_count": 16656, "translator_type": "none", "verified": false, "withheld_in_countries": []}, "super_follow_eligible": false, "super_followed_by": false, "super_following": false}}}, "legacy": {"created_at": "Mon Oct 11 04:04:21 +0000 2021", "conversation_id_str": "1447348840164564994", "display_text_range": [79, 89], "entities": {"user_mentions": [{"id_str": "1087289365544534016", "name": "Iga \u015awi\u0105tek", "screen_name": "iga_swiatek", "indices": [0, 12]}, {"id_str": "17158140", "name": "wta", "screen_name": "WTA", "indices": [13, 17]}, {"id_str": "1252575285293260800", "name": "Xiaomi Polska", "screen_name": "XiaomiPL", "indices": [18, 27]}, {"id_str": "603617274", "name": "Grupa PZU", "screen_name": "GrupaPZU", "indices": [28, 37]}, {"id_str": "3111250452", "name": "ASICS Tennis", "screen_name": "ASICSTennis", "indices": [38, 50]}, {"id_str": "30017071", "name": "BNP Paribas Open", "screen_name": "BNPPARIBASOPEN", "indices": [51, 66]}, {"id_str": "64391043", "name": "Tecnifibre", "screen_name": "tecnifibre", "indices": [67, 78]}], "urls": [], "hashtags": [], "symbols": []}, "favorite_count": 1, "favorited": false, "full_text": "@iga_swiatek @WTA @XiaomiPL @GrupaPZU @ASICSTennis @BNPPARIBASOPEN @tecnifibre Brawo Iga!", "in_reply_to_screen_name": "iga_swiatek", "in_reply_to_status_id_str": "1447348840164564994", "in_reply_to_user_id_str": "1087289365544534016", "is_quote_status": false, "lang": "pl", "quote_count": 0, "reply_count": 0, "retweet_count": 0, "retweeted": false, "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "user_id_str": "155842063", "id_str": "1447412733062926345"}}}
is_cursor True last_scrapped_zero False
need_guest_token True
run request RequestDetails(http_method=<HttpMethod.GET: 1>, url='https://twitter.com/i/api/graphql/kUnCMgMYZCR8GyRZz76IQg/TweetDetail', headers={'Authorization': 'Bearer AAAAAAAAAAAAAAAAAAAAANRILgAAAAAAnNwIzUejRCOuH5E6I8xnZz4puTs%3D1Zv7ttfk8LF81IUq16cHjhLTvJu4FA33AGWWjCpTnA', 'x-guest-token': '1448607906950168577'}, params={'variables': '{"focalTweetId": "1447348840164564994", "with_rux_injections": true, "includePromotedContent": true, "withCommunity": true, "withTweetQuoteCount": true, "withBirdwatchNotes": true, "withSuperFollowsUserFields": true, "withUserResults": true, "withBirdwatchPivots": true, "withReactionsMetadata": true, "withReactionsPerspective": true, "withSuperFollowsTweetFields": true, "withVoice": true, "cursor": "AwIAAPANHBn2OISAuc2L-YKWKILAo5XE1YKWKIaAqfXvpxIA8ACArN3LioeWKIbAvqnbroQSAPAIssWD8YWWKITAuM2s34OWKIDAvoGkiZoSAFC58Y2Wg0gA8Qi9hb2_gpYoiMC9tcuqk5YohICy7b6KhWMA0PmI-oOWKI6ArNWuuYMkAPAIuamF9YKWKIzAubW-r4KWKI7Avcn-2Yt1APAHufHVzIKWKIqAs_XpuoSWKICAudW241oAUYCzxduxogBQsumypoIbAEGz0cGRGwBBubnZiC0A4L3p6pCFliiQwLLhmdWMqwBQuf2pwoRaAFC9nbr5kuoAULn1vrGEvQBBsqHkmGwAQLn97sGQAFGAsrnZ_uoAUaK9q8-DbABB3ZLghVoAQM3S7oa0AFC-mfKWhDYAUaqx492WGwBA5aHxkNgAUKyx_ICcdQBBsOGA_l8BQb7d8pVjAEGy9b-5EgDgsKmDppOWKJLAvtnIjZ8SAFC4tbf-kgkAULmFsaOJdQBRs9nemonYAEGhn_-IjAEx1YvCKQFRsvWci5q0AED5zpyEdQBAvrXB28IBYsCoicqekBcBwbKBhZYolMC9xZvTgqcB0KX7iZWWKCUCEhUOAAA"}'}, timeout=20)
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:44.247623+02:00", "raw_value": {"__typename": "Tweet", "rest_id": "1447408331723788290", "has_birdwatch_notes": false, "core": {"user_results": {"result": {"__typename": "User", "id": "VXNlcjoyODI5NjkzNDEx", "rest_id": "2829693411", "affiliates_highlighted_label": {}, "legacy": {"created_at": "Tue Oct 14 15:38:43 +0000 2014", "default_profile": true, "default_profile_image": false, "description": "", "entities": {"description": {"urls": []}}, "fast_followers_count": 0, "favourites_count": 9040, "followers_count": 59, "friends_count": 548, "has_custom_timelines": false, "is_translator": false, "listed_count": 0, "location": "\u0141aziska G\u00f3rne ", "media_count": 42, "name": "Dariusz Macio\u0142 ***** ***", "normal_followers_count": 59, "pinned_tweet_ids_str": [], "profile_banner_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 84.59, "rgb": {"blue": 140, "green": 58, "red": 35}}, {"percentage": 7.52, "rgb": {"blue": 224, "green": 211, "red": 207}}, {"percentage": 3.89, "rgb": {"blue": 159, "green": 117, "red": 103}}, {"percentage": 1.53, "rgb": {"blue": 57, "green": 3, "red": 203}}, {"percentage": 0.51, "rgb": {"blue": 86, "green": 27, "red": 90}}]}}}}, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2829693411/1607463166", "profile_image_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 49.05, "rgb": {"blue": 254, "green": 232, "red": 219}}, {"percentage": 31.13, "rgb": {"blue": 43, "green": 20, "red": 17}}, {"percentage": 12.07, "rgb": {"blue": 160, "green": 115, "red": 1}}, {"percentage": 2.97, "rgb": {"blue": 51, "green": 44, "red": 81}}, {"percentage": 1.1, "rgb": {"blue": 70, "green": 31, "red": 4}}]}}}}, "profile_image_url_https": "https://pbs.twimg.com/profile_images/1090495628323504128/TU7RH815_normal.jpg", "profile_interstitial_type": "", "protected": false, "screen_name": "DariuszMaciol", "statuses_count": 2046, "translator_type": "none", "verified": false, "withheld_in_countries": []}, "super_follow_eligible": false, "super_followed_by": false, "super_following": false}}}, "legacy": {"created_at": "Mon Oct 11 03:46:52 +0000 2021", "conversation_id_str": "1447348840164564994", "display_text_range": [79, 90], "entities": {"user_mentions": [{"id_str": "1087289365544534016", "name": "Iga \u015awi\u0105tek", "screen_name": "iga_swiatek", "indices": [0, 12]}, {"id_str": "17158140", "name": "wta", "screen_name": "WTA", "indices": [13, 17]}, {"id_str": "1252575285293260800", "name": "Xiaomi Polska", "screen_name": "XiaomiPL", "indices": [18, 27]}, {"id_str": "603617274", "name": "Grupa PZU", "screen_name": "GrupaPZU", "indices": [28, 37]}, {"id_str": "3111250452", "name": "ASICS Tennis", "screen_name": "ASICSTennis", "indices": [38, 50]}, {"id_str": "30017071", "name": "BNP Paribas Open", "screen_name": "BNPPARIBASOPEN", "indices": [51, 66]}, {"id_str": "64391043", "name": "Tecnifibre", "screen_name": "tecnifibre", "indices": [67, 78]}], "urls": [], "hashtags": [], "symbols": []}, "favorite_count": 0, "favorited": false, "full_text": "@iga_swiatek @WTA @XiaomiPL @GrupaPZU @ASICSTennis @BNPPARIBASOPEN @tecnifibre \ud83d\udc4f\ud83d\udc4f\ud83d\udc4f\ud83d\udc4f\ud83d\udc4f\ud83d\udc4d\ud83d\udc4d\ud83d\udc4d\ud83c\udf3c\ud83c\udf37\u2698", "in_reply_to_screen_name": "iga_swiatek", "in_reply_to_status_id_str": "1447348840164564994", "in_reply_to_user_id_str": "1087289365544534016", "is_quote_status": false, "lang": "und", "quote_count": 0, "reply_count": 0, "retweet_count": 0, "retweeted": false, "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "user_id_str": "2829693411", "id_str": "1447408331723788290"}}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:44.247799+02:00", "raw_value": {"__typename": "Tweet", "rest_id": "1447410718488268800", "has_birdwatch_notes": false, "core": {"user_results": {"result": {"__typename": "User", "id": "VXNlcjoxMzkwNjA5ODcyMTM2MzMxMjY2", "rest_id": "1390609872136331266", "affiliates_highlighted_label": {}, "legacy": {"created_at": "Fri May 07 10:10:25 +0000 2021", "default_profile": true, "default_profile_image": false, "description": "starszy specjalista Urz\u0119du Gminy Rogowo", "entities": {"description": {"urls": []}}, "fast_followers_count": 0, "favourites_count": 500, "followers_count": 0, "friends_count": 10, "has_custom_timelines": false, "is_translator": false, "listed_count": 0, "location": "Bydgoszcz, Polska", "media_count": 10, "name": "Pawe\u0142 Jankowski", "normal_followers_count": 0, "pinned_tweet_ids_str": [], "profile_image_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 43.49, "rgb": {"blue": 255, "green": 252, "red": 254}}, {"percentage": 23.62, "rgb": {"blue": 85, "green": 102, "red": 141}}, {"percentage": 18.77, "rgb": {"blue": 90, "green": 64, "red": 26}}, {"percentage": 5.83, "rgb": {"blue": 160, "green": 132, "red": 47}}, {"percentage": 3.03, "rgb": {"blue": 29, "green": 31, "red": 41}}]}}}}, "profile_image_url_https": "https://pbs.twimg.com/profile_images/1390610355173445634/JJKt1-Ko_normal.jpg", "profile_interstitial_type": "", "protected": false, "screen_name": "jankesbydgoszcz", "statuses_count": 64, "translator_type": "none", "verified": false, "withheld_in_countries": []}, "super_follow_eligible": false, "super_followed_by": false, "super_following": false}}}, "legacy": {"created_at": "Mon Oct 11 03:56:21 +0000 2021", "conversation_id_str": "1447348840164564994", "display_text_range": [79, 94], "entities": {"user_mentions": [{"id_str": "1087289365544534016", "name": "Iga \u015awi\u0105tek", "screen_name": "iga_swiatek", "indices": [0, 12]}, {"id_str": "17158140", "name": "wta", "screen_name": "WTA", "indices": [13, 17]}, {"id_str": "1252575285293260800", "name": "Xiaomi Polska", "screen_name": "XiaomiPL", "indices": [18, 27]}, {"id_str": "603617274", "name": "Grupa PZU", "screen_name": "GrupaPZU", "indices": [28, 37]}, {"id_str": "3111250452", "name": "ASICS Tennis", "screen_name": "ASICSTennis", "indices": [38, 50]}, {"id_str": "30017071", "name": "BNP Paribas Open", "screen_name": "BNPPARIBASOPEN", "indices": [51, 66]}, {"id_str": "64391043", "name": "Tecnifibre", "screen_name": "tecnifibre", "indices": [67, 78]}], "urls": [], "hashtags": [], "symbols": []}, "favorite_count": 0, "favorited": false, "full_text": "@iga_swiatek @WTA @XiaomiPL @GrupaPZU @ASICSTennis @BNPPARIBASOPEN @tecnifibre Jeste\u015b Wielka\u2764\ufe0f", "in_reply_to_screen_name": "iga_swiatek", "in_reply_to_status_id_str": "1447348840164564994", "in_reply_to_user_id_str": "1087289365544534016", "is_quote_status": false, "lang": "pl", "quote_count": 0, "reply_count": 0, "retweet_count": 0, "retweeted": false, "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "user_id_str": "1390609872136331266", "id_str": "1447410718488268800"}}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:44.247942+02:00", "raw_value": {"__typename": "Tweet", "rest_id": "1447415664780713993", "has_birdwatch_notes": false, "core": {"user_results": {"result": {"__typename": "User", "id": "VXNlcjoxMDA4NzczNzcxMTI0MjAzNTIx", "rest_id": "1008773771124203521", "affiliates_highlighted_label": {}, "legacy": {"created_at": "Mon Jun 18 18:09:43 +0000 2018", "default_profile": true, "default_profile_image": false, "description": "Merging business and science. For explorers and builders of value. Momentum. Tweets by Laila Zichmanis, founder of Lumena, a brand management firm. P&G Alumnist", "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "lumena.ca", "expanded_url": "http://lumena.ca", "url": "https://t.co/HQ77pK7lpg", "indices": [0, 23]}]}}, "fast_followers_count": 0, "favourites_count": 389, "followers_count": 9, "friends_count": 53, "has_custom_timelines": false, "is_translator": false, "listed_count": 0, "location": "Toronto, Ontario", "media_count": 20, "name": "Lumena", "normal_followers_count": 9, "pinned_tweet_ids_str": ["1145785248736845825"], "profile_banner_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 99.75, "rgb": {"blue": 33, "green": 217, "red": 235}}, {"percentage": 0.25, "rgb": {"blue": 116, "green": 232, "red": 242}}]}}}}, "profile_banner_url": "https://pbs.twimg.com/profile_banners/1008773771124203521/1529781857", "profile_image_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 53.0, "rgb": {"blue": 255, "green": 255, "red": 255}}, {"percentage": 41.4, "rgb": {"blue": 56, "green": 192, "red": 168}}, {"percentage": 3.78, "rgb": {"blue": 109, "green": 208, "red": 190}}, {"percentage": 2.19, "rgb": {"blue": 178, "green": 240, "red": 243}}]}}}}, "profile_image_url_https": "https://pbs.twimg.com/profile_images/1017887611858251776/0q2V-Xkx_normal.jpg", "profile_interstitial_type": "", "protected": false, "screen_name": "lumenamv", "statuses_count": 235, "translator_type": "none", "url": "https://t.co/HQ77pK7lpg", "verified": false, "withheld_in_countries": []}, "super_follow_eligible": false, "super_followed_by": false, "super_following": false}}}, "legacy": {"created_at": "Mon Oct 11 04:16:00 +0000 2021", "conversation_id_str": "1447348840164564994", "display_text_range": [79, 335], "entities": {"user_mentions": [{"id_str": "1087289365544534016", "name": "Iga \u015awi\u0105tek", "screen_name": "iga_swiatek", "indices": [0, 12]}, {"id_str": "17158140", "name": "wta", "screen_name": "WTA", "indices": [13, 17]}, {"id_str": "1252575285293260800", "name": "Xiaomi Polska", "screen_name": "XiaomiPL", "indices": [18, 27]}, {"id_str": "603617274", "name": "Grupa PZU", "screen_name": "GrupaPZU", "indices": [28, 37]}, {"id_str": "3111250452", "name": "ASICS Tennis", "screen_name": "ASICSTennis", "indices": [38, 50]}, {"id_str": "30017071", "name": "BNP Paribas Open", "screen_name": "BNPPARIBASOPEN", "indices": [51, 66]}, {"id_str": "64391043", "name": "Tecnifibre", "screen_name": "tecnifibre", "indices": [67, 78]}], "urls": [], "hashtags": [], "symbols": []}, "favorite_count": 1, "favorited": false, "full_text": "@iga_swiatek @WTA @XiaomiPL @GrupaPZU @ASICSTennis @BNPPARIBASOPEN @tecnifibre This is awesome Iga. I don\u2019t know your country of focus - my idea is child ADHD. My brilliant nephew went from ADHD to drug use to an accidental overdose where he died at age 23 this year. This is a common path with ADHD. CADDAC in Canada helps treat ADHD.", "in_reply_to_screen_name": "iga_swiatek", "in_reply_to_status_id_str": "1447348840164564994", "in_reply_to_user_id_str": "1087289365544534016", "is_quote_status": false, "lang": "en", "quote_count": 0, "reply_count": 0, "retweet_count": 0, "retweeted": false, "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "user_id_str": "1008773771124203521", "id_str": "1447415664780713993"}}}
is_cursor True last_scrapped_zero False
need_guest_token True
run request RequestDetails(http_method=<HttpMethod.GET: 1>, url='https://twitter.com/i/api/graphql/kUnCMgMYZCR8GyRZz76IQg/TweetDetail', headers={'Authorization': 'Bearer AAAAAAAAAAAAAAAAAAAAANRILgAAAAAAnNwIzUejRCOuH5E6I8xnZz4puTs%3D1Zv7ttfk8LF81IUq16cHjhLTvJu4FA33AGWWjCpTnA', 'x-guest-token': '1448607906950168577'}, params={'variables': '{"focalTweetId": "1447348840164564994", "with_rux_injections": true, "includePromotedContent": true, "withCommunity": true, "withTweetQuoteCount": true, "withBirdwatchNotes": true, "withSuperFollowsUserFields": true, "withUserResults": true, "withBirdwatchPivots": true, "withReactionsMetadata": true, "withReactionsPerspective": true, "withSuperFollowsTweetFields": true, "withVoice": true, "cursor": "HgIAAPANHBn2O4SAuc2L-YKWKILAo5XE1YKWKIaAqfXvpxIA8ACArN3LioeWKIbAvqnbroQSAPARssWD8YWWKJKAudmbuKCWKITAuM2s34OWKIDAvoGkiZoSAFC58Y2Wg1EA8Qi9hb2_gpYoiMC9tcuqk5YohICy7b6KhWwA0PmI-oOWKI6ArNWuuYMkAPAIuamF9YKWKIzAubW-r4KWKI7Avcn-2YtRAFCylbCNnYcA8Ae58dXMgpYoioCz9em6hJYogIC51bbjYwBRgLPF27G0AFCy6bKmghsAQbPRwZEbAEG5udmILQDgvenqkIWWKJDAsuGZ1Yy0AFC5_anChFoAUL2duvmS_ABRufW-sYR1ADGh5JhsAEC5_e7BmQBggLK52f6FGwBRor2rz4NsAEHdkuCFWgBAzdLuhr0AUL6Z8paENgBRqrHj3ZYbAEDlofGQ4QBQrLH8gJx1AEGw4YD-cQFBvt3ylWMAQbL1v7kSAOGwqYOmk5YoksC-2ciNny0AQPmmmJ4bAFC4tbf-kgkAULmFsaOJfgBRs9nemonhAEGhn_-IpwEx1YvCOwFRsvWci5q9AED5zpyEfgBAvrXB290BYsCoicqekCABwbKBhZYolMC9xZvTgrkB0KX7iZWWKCUCEhUOAAA"}'}, timeout=20)
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:44.783956+02:00", "raw_value": {"__typename": "Tweet", "rest_id": "1447419350470823939", "has_birdwatch_notes": false, "core": {"user_results": {"result": {"__typename": "User", "id": "VXNlcjo5NDMyMDQ5MjYzODk0NTY4OTY=", "rest_id": "943204926389456896", "affiliates_highlighted_label": {}, "legacy": {"created_at": "Tue Dec 19 19:42:33 +0000 2017", "default_profile": true, "default_profile_image": false, "description": "hejtuj\u0119 swe istnienie i kocham ig\u0119 \u015b \u2022 @wersjapro", "entities": {"description": {"urls": []}}, "fast_followers_count": 0, "favourites_count": 29340, "followers_count": 581, "friends_count": 642, "has_custom_timelines": true, "is_translator": false, "listed_count": 20, "location": "she/her", "media_count": 535, "name": "te futueo et caballum tuum", "normal_followers_count": 581, "pinned_tweet_ids_str": ["1447655339130765319"], "profile_banner_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 96.44, "rgb": {"blue": 0, "green": 0, "red": 0}}, {"percentage": 2.91, "rgb": {"blue": 105, "green": 105, "red": 105}}, {"percentage": 0.29, "rgb": {"blue": 100, "green": 63, "red": 40}}, {"percentage": 0.18, "rgb": {"blue": 53, "green": 55, "red": 73}}, {"percentage": 0.18, "rgb": {"blue": 199, "green": 192, "red": 199}}]}}}}, "profile_banner_url": "https://pbs.twimg.com/profile_banners/943204926389456896/1633456282", "profile_image_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 71.36, "rgb": {"blue": 73, "green": 92, "red": 121}}, {"percentage": 15.88, "rgb": {"blue": 152, "green": 164, "red": 166}}, {"percentage": 8.79, "rgb": {"blue": 69, "green": 86, "red": 125}}, {"percentage": 1.36, "rgb": {"blue": 43, "green": 55, "red": 74}}, {"percentage": 0.73, "rgb": {"blue": 117, "green": 151, "red": 168}}]}}}}, "profile_image_url_https": "https://pbs.twimg.com/profile_images/1429061040441110528/7jdRAH30_normal.jpg", "profile_interstitial_type": "", "protected": false, "screen_name": "feminatywy", "statuses_count": 20534, "translator_type": "none", "verified": false, "withheld_in_countries": []}, "super_follow_eligible": false, "super_followed_by": false, "super_following": false}}}, "legacy": {"created_at": "Mon Oct 11 04:30:39 +0000 2021", "conversation_id_str": "1447348840164564994", "display_text_range": [79, 90], "entities": {"user_mentions": [{"id_str": "1087289365544534016", "name": "Iga \u015awi\u0105tek", "screen_name": "iga_swiatek", "indices": [0, 12]}, {"id_str": "17158140", "name": "wta", "screen_name": "WTA", "indices": [13, 17]}, {"id_str": "1252575285293260800", "name": "Xiaomi Polska", "screen_name": "XiaomiPL", "indices": [18, 27]}, {"id_str": "603617274", "name": "Grupa PZU", "screen_name": "GrupaPZU", "indices": [28, 37]}, {"id_str": "3111250452", "name": "ASICS Tennis", "screen_name": "ASICSTennis", "indices": [38, 50]}, {"id_str": "30017071", "name": "BNP Paribas Open", "screen_name": "BNPPARIBASOPEN", "indices": [51, 66]}, {"id_str": "64391043", "name": "Tecnifibre", "screen_name": "tecnifibre", "indices": [67, 78]}], "urls": [], "hashtags": [], "symbols": []}, "favorite_count": 2, "favorited": false, "full_text": "@iga_swiatek @WTA @XiaomiPL @GrupaPZU @ASICSTennis @BNPPARIBASOPEN @tecnifibre dzi\u0119kuj\u0119.:)", "in_reply_to_screen_name": "iga_swiatek", "in_reply_to_status_id_str": "1447348840164564994", "in_reply_to_user_id_str": "1087289365544534016", "is_quote_status": false, "lang": "pl", "quote_count": 0, "reply_count": 0, "retweet_count": 0, "retweeted": false, "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "user_id_str": "943204926389456896", "id_str": "1447419350470823939"}}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:44.784218+02:00", "raw_value": {"__typename": "Tweet", "rest_id": "1447419663772704769", "has_birdwatch_notes": false, "core": {"user_results": {"result": {"__typename": "User", "id": "VXNlcjoxMzAyMzA5MzEyODI0NTk0NDMy", "rest_id": "1302309312824594432", "affiliates_highlighted_label": {}, "legacy": {"created_at": "Sat Sep 05 18:15:17 +0000 2020", "default_profile": true, "default_profile_image": false, "description": "got about a thousand friends more followers but i'm on my own\n \u2022 #chy\u0142kary \u2022 read carrd byf!!!", "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "zaimki.pl/@ciemnachmurka", "expanded_url": "https://zaimki.pl/@ciemnachmurka", "url": "https://t.co/swddFTgbwd", "indices": [0, 23]}]}}, "fast_followers_count": 0, "favourites_count": 79893, "followers_count": 1529, "friends_count": 1343, "has_custom_timelines": true, "is_translator": false, "listed_count": 66, "location": "\ud83c\uddf5\ud83c\uddf1/\ud83c\uddec\ud83c\udde7\u2022 she/her \u2022 infj", "media_count": 4074, "name": "madziola", "normal_followers_count": 1529, "pinned_tweet_ids_str": ["1412281813318393856"], "profile_banner_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 86.63, "rgb": {"blue": 203, "green": 184, "red": 166}}, {"percentage": 13.37, "rgb": {"blue": 206, "green": 179, "red": 155}}]}}}}, "profile_banner_url": "https://pbs.twimg.com/profile_banners/1302309312824594432/1633636692", "profile_image_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 28.29, "rgb": {"blue": 224, "green": 249, "red": 251}}, {"percentage": 22.58, "rgb": {"blue": 245, "green": 187, "red": 167}}, {"percentage": 9.28, "rgb": {"blue": 59, "green": 82, "red": 150}}, {"percentage": 6.55, "rgb": {"blue": 33, "green": 28, "red": 37}}, {"percentage": 4.83, "rgb": {"blue": 172, "green": 214, "red": 249}}]}}}}, "profile_image_url_https": "https://pbs.twimg.com/profile_images/1446203223942049801/z0qQqfvK_normal.jpg", "profile_interstitial_type": "", "protected": false, "screen_name": "ciemnachmurka", "statuses_count": 67900, "translator_type": "none", "url": "https://t.co/swddFTgbwd", "verified": false, "withheld_in_countries": []}, "super_follow_eligible": false, "super_followed_by": false, "super_following": false}}}, "legacy": {"created_at": "Mon Oct 11 04:31:54 +0000 2021", "conversation_id_str": "1447348840164564994", "display_text_range": [13, 58], "entities": {"user_mentions": [{"id_str": "1087289365544534016", "name": "Iga \u015awi\u0105tek", "screen_name": "iga_swiatek", "indices": [0, 12]}], "urls": [], "hashtags": [], "symbols": []}, "favorite_count": 3, "favorited": false, "full_text": "@iga_swiatek dzi\u0119kujemy iga, po prostu jeste\u015b wspania\u0142a \u2764\ufe0f", "in_reply_to_screen_name": "iga_swiatek", "in_reply_to_status_id_str": "1447348840164564994", "in_reply_to_user_id_str": "1087289365544534016", "is_quote_status": false, "lang": "pl", "quote_count": 0, "reply_count": 0, "retweet_count": 0, "retweeted": false, "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "user_id_str": "1302309312824594432", "id_str": "1447419663772704769"}}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:44.784429+02:00", "raw_value": {"__typename": "Tweet", "rest_id": "1447420515560435712", "has_birdwatch_notes": false, "core": {"user_results": {"result": {"__typename": "User", "id": "VXNlcjoxMzI5OTEwMTY2NTA3MTUxMzYw", "rest_id": "1329910166507151360", "affiliates_highlighted_label": {}, "legacy": {"created_at": "Fri Nov 20 22:11:19 +0000 2020", "default_profile": true, "default_profile_image": false, "description": "|Chcia\u0142abym powiedzie\u0107 \u017ce Kuba Polny Konik Wolny \u015bwiat dominacja|\n|@achtenandyy|\n|Wujeczek \ud83e\uddd4\ud83c\udffdDareczek \ud83c\udfc3 \u015bwiat \ud83c\udf0d dominacja \ud83d\udc50\ud83d\udc51|\n |Klub Kochania Norbercika|", "entities": {"description": {"urls": []}}, "fast_followers_count": 0, "favourites_count": 54245, "followers_count": 1342, "friends_count": 1581, "has_custom_timelines": true, "is_translator": false, "listed_count": 15, "location": "Marvel,1D, 5sos,skijumping,bjj", "media_count": 3373, "name": "julka krejzolka| FOREVER \ud83d\udc9b", "normal_followers_count": 1342, "pinned_tweet_ids_str": ["1446930674213179399"], "profile_banner_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 45.19, "rgb": {"blue": 113, "green": 113, "red": 130}}, {"percentage": 30.83, "rgb": {"blue": 178, "green": 183, "red": 210}}, {"percentage": 14.64, "rgb": {"blue": 171, "green": 153, "red": 239}}, {"percentage": 5.45, "rgb": {"blue": 122, "green": 172, "red": 205}}, {"percentage": 0.98, "rgb": {"blue": 185, "green": 155, "red": 207}}]}}}}, "profile_banner_url": "https://pbs.twimg.com/profile_banners/1329910166507151360/1631545627", "profile_image_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 46.89, "rgb": {"blue": 37, "green": 32, "red": 30}}, {"percentage": 24.02, "rgb": {"blue": 51, "green": 37, "red": 158}}, {"percentage": 19.83, "rgb": {"blue": 117, "green": 115, "red": 140}}, {"percentage": 6.4, "rgb": {"blue": 78, "green": 75, "red": 124}}, {"percentage": 1.83, "rgb": {"blue": 117, "green": 99, "red": 166}}]}}}}, "profile_image_url_https": "https://pbs.twimg.com/profile_images/1439718864615624707/eVu_SCK2_normal.jpg", "profile_interstitial_type": "", "protected": false, "screen_name": "mylifeischujowe", "statuses_count": 48308, "translator_type": "none", "verified": false, "withheld_in_countries": []}, "super_follow_eligible": false, "super_followed_by": false, "super_following": false}}}, "legacy": {"created_at": "Mon Oct 11 04:35:17 +0000 2021", "conversation_id_str": "1447348840164564994", "display_text_range": [13, 51], "entities": {"user_mentions": [{"id_str": "1087289365544534016", "name": "Iga \u015awi\u0105tek", "screen_name": "iga_swiatek", "indices": [0, 12]}], "urls": [], "hashtags": [], "symbols": []}, "favorite_count": 2, "favorited": false, "full_text": "@iga_swiatek Dzi\u0119kuje Iga. Jeste\u015b najcudowniejsza \u2764", "in_reply_to_screen_name": "iga_swiatek", "in_reply_to_status_id_str": "1447348840164564994", "in_reply_to_user_id_str": "1087289365544534016", "is_quote_status": false, "lang": "pl", "quote_count": 0, "reply_count": 0, "retweet_count": 0, "retweeted": false, "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "user_id_str": "1329910166507151360", "id_str": "1447420515560435712"}}}
is_cursor True last_scrapped_zero False
need_guest_token True
run request RequestDetails(http_method=<HttpMethod.GET: 1>, url='https://twitter.com/i/api/graphql/kUnCMgMYZCR8GyRZz76IQg/TweetDetail', headers={'Authorization': 'Bearer AAAAAAAAAAAAAAAAAAAAANRILgAAAAAAnNwIzUejRCOuH5E6I8xnZz4puTs%3D1Zv7ttfk8LF81IUq16cHjhLTvJu4FA33AGWWjCpTnA', 'x-guest-token': '1448607906950168577'}, params={'variables': '{"focalTweetId": "1447348840164564994", "with_rux_injections": true, "includePromotedContent": true, "withCommunity": true, "withTweetQuoteCount": true, "withBirdwatchNotes": true, "withSuperFollowsUserFields": true, "withUserResults": true, "withBirdwatchPivots": true, "withReactionsMetadata": true, "withReactionsPerspective": true, "withSuperFollowsTweetFields": true, "withVoice": true, "cursor": "OQIAAPANHBn2PoSAuc2L-YKWKILAo5XE1YKWKIaAqfXvpxIA8ACArN3LioeWKIbAvqnbroQSAPARssWD8YWWKJKAudmbuKCWKITAuM2s34OWKIDAvoGkiZoSAFC58Y2Wg1EA8Qi9hb2_gpYoiMC9tcuqk5YohICy7b6KhWwA0PmI-oOWKI6ArNWuuYMkAPAIuamF9YKWKIzAubW-r4KWKI7Avcn-2YtRAFCylbCNnYcA8Ae58dXMgpYoioCz9em6hJYogIC51bbjYwBRgLPF27G0AFCy6bKmghsAQbPRwZEbAEG5udmILQDgvenqkIWWKJDAsuGZ1Yy0AFC5_anChFoAUL2duvmS_ABRufW-sYR1ADGh5JhsAEC5_e7BmQBggLK52f6FGwBRor2rz4NsAEHdkuCFWgBAzdLuhr0AUL6Z8paENgBRqrHj3ZYbAEDlofGQ4QBQrLH8gJx1AEGw4YD-cQFBvt3ylWMAQbL1v7kSAFCwqYOmkyQA4b3pyNKiliiSwL7ZyI2fNgBA-aaYniQAULi1t_6SCQBQuYWxo4mHAFGz2d6aieoAQaGf_4iwATHVi8JEAVGy9ZyLmsYAMfnOnMIBULPB_qCikABAvrXB2-8BYsCoicqekDIBMLKBhRIA4bid4I6iliiUwL3Fm9OC1AHQpfuJlZYoJQISFQ4AAA"}'}, timeout=20)
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:45.271609+02:00", "raw_value": {"__typename": "Tweet", "rest_id": "1447420728261939201", "has_birdwatch_notes": false, "core": {"user_results": {"result": {"__typename": "User", "id": "VXNlcjoyOTIwNjk0OTIx", "rest_id": "2920694921", "affiliates_highlighted_label": {}, "legacy": {"created_at": "Sun Dec 14 01:42:48 +0000 2014", "default_profile": false, "default_profile_image": false, "description": "Chc\u0119, \u017ceby by\u0142o normalnie \ud83d\udc94", "entities": {"description": {"urls": []}}, "fast_followers_count": 0, "favourites_count": 23290, "followers_count": 139, "friends_count": 274, "has_custom_timelines": true, "is_translator": false, "listed_count": 2, "location": "Krak\u00f3w, Polska", "media_count": 60, "name": "L.Gra\u017cyna \ud835\udd4azerszenowicz \ud83c\uddf5\ud83c\uddf1 \ud83c\uddea\ud83c\uddfa ***** *** \u26a1\u26a1\u26a1", "normal_followers_count": 139, "pinned_tweet_ids_str": [], "profile_banner_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 62.81, "rgb": {"blue": 219, "green": 169, "red": 127}}, {"percentage": 23.29, "rgb": {"blue": 185, "green": 170, "red": 157}}, {"percentage": 7.61, "rgb": {"blue": 214, "green": 144, "red": 85}}, {"percentage": 6.18, "rgb": {"blue": 99, "green": 128, "red": 130}}]}}}}, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2920694921/1453148086", "profile_image_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 49.14, "rgb": {"blue": 236, "green": 233, "red": 235}}, {"percentage": 46.64, "rgb": {"blue": 9, "green": 6, "red": 8}}]}}}}, "profile_image_url_https": "https://pbs.twimg.com/profile_images/689178750848778240/e_zK5VWB_normal.jpg", "profile_interstitial_type": "", "protected": false, "screen_name": "szerszenois55", "statuses_count": 4720, "translator_type": "none", "verified": false, "withheld_in_countries": []}, "super_follow_eligible": false, "super_followed_by": false, "super_following": false}}}, "legacy": {"created_at": "Mon Oct 11 04:36:08 +0000 2021", "conversation_id_str": "1447348840164564994", "display_text_range": [79, 99], "entities": {"user_mentions": [{"id_str": "1087289365544534016", "name": "Iga \u015awi\u0105tek", "screen_name": "iga_swiatek", "indices": [0, 12]}, {"id_str": "17158140", "name": "wta", "screen_name": "WTA", "indices": [13, 17]}, {"id_str": "1252575285293260800", "name": "Xiaomi Polska", "screen_name": "XiaomiPL", "indices": [18, 27]}, {"id_str": "603617274", "name": "Grupa PZU", "screen_name": "GrupaPZU", "indices": [28, 37]}, {"id_str": "3111250452", "name": "ASICS Tennis", "screen_name": "ASICSTennis", "indices": [38, 50]}, {"id_str": "30017071", "name": "BNP Paribas Open", "screen_name": "BNPPARIBASOPEN", "indices": [51, 66]}, {"id_str": "64391043", "name": "Tecnifibre", "screen_name": "tecnifibre", "indices": [67, 78]}], "urls": [], "hashtags": [], "symbols": []}, "favorite_count": 1, "favorited": false, "full_text": "@iga_swiatek @WTA @XiaomiPL @GrupaPZU @ASICSTennis @BNPPARIBASOPEN @tecnifibre .Brawo, pi\u0119kny gest!", "in_reply_to_screen_name": "iga_swiatek", "in_reply_to_status_id_str": "1447348840164564994", "in_reply_to_user_id_str": "1087289365544534016", "is_quote_status": false, "lang": "pl", "quote_count": 0, "reply_count": 0, "retweet_count": 0, "retweeted": false, "source": "<a href=\"https://mobile.twitter.com\" rel=\"nofollow\">Twitter Web App</a>", "user_id_str": "2920694921", "id_str": "1447420728261939201"}}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:45.272178+02:00", "raw_value": {"__typename": "Tweet", "rest_id": "1447421977170415619", "has_birdwatch_notes": false, "core": {"user_results": {"result": {"__typename": "User", "id": "VXNlcjozNDM0MTQ1Mjg=", "rest_id": "343414528", "affiliates_highlighted_label": {}, "legacy": {"created_at": "Wed Jul 27 14:58:07 +0000 2011", "default_profile": false, "default_profile_image": false, "description": "Prawniczka, kt\u00f3ra prawa dziecka ceni ponad prawo rodzic\u00f3w do jego posiadania. Legionistka, \u017cona Legionisty i mama Legionisty.", "entities": {"description": {"urls": []}}, "fast_followers_count": 0, "favourites_count": 273857, "followers_count": 803, "friends_count": 286, "has_custom_timelines": true, "is_translator": false, "listed_count": 4, "location": "Warszawa, Polska", "media_count": 682, "name": "Agnieszka", "normal_followers_count": 803, "pinned_tweet_ids_str": [], "profile_banner_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 40.19, "rgb": {"blue": 42, "green": 62, "red": 62}}, {"percentage": 40.04, "rgb": {"blue": 174, "green": 177, "red": 182}}, {"percentage": 12.78, "rgb": {"blue": 84, "green": 106, "red": 104}}, {"percentage": 5.19, "rgb": {"blue": 107, "green": 117, "red": 121}}]}}}}, "profile_banner_url": "https://pbs.twimg.com/profile_banners/343414528/1443553221", "profile_image_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 49.35, "rgb": {"blue": 112, "green": 128, "red": 151}}, {"percentage": 37.16, "rgb": {"blue": 47, "green": 62, "red": 78}}, {"percentage": 3.69, "rgb": {"blue": 165, "green": 163, "red": 175}}, {"percentage": 3.14, "rgb": {"blue": 31, "green": 58, "red": 109}}, {"percentage": 1.6, "rgb": {"blue": 53, "green": 74, "red": 135}}]}}}}, "profile_image_url_https": "https://pbs.twimg.com/profile_images/877111971170136065/8wZUmd8y_normal.jpg", "profile_interstitial_type": "", "protected": false, "screen_name": "amwks82", "statuses_count": 11530, "translator_type": "none", "verified": false, "withheld_in_countries": []}, "super_follow_eligible": false, "super_followed_by": false, "super_following": false}}}, "legacy": {"created_at": "Mon Oct 11 04:41:05 +0000 2021", "conversation_id_str": "1447348840164564994", "display_text_range": [79, 163], "entities": {"user_mentions": [{"id_str": "1087289365544534016", "name": "Iga \u015awi\u0105tek", "screen_name": "iga_swiatek", "indices": [0, 12]}, {"id_str": "17158140", "name": "wta", "screen_name": "WTA", "indices": [13, 17]}, {"id_str": "1252575285293260800", "name": "Xiaomi Polska", "screen_name": "XiaomiPL", "indices": [18, 27]}, {"id_str": "603617274", "name": "Grupa PZU", "screen_name": "GrupaPZU", "indices": [28, 37]}, {"id_str": "3111250452", "name": "ASICS Tennis", "screen_name": "ASICSTennis", "indices": [38, 50]}, {"id_str": "30017071", "name": "BNP Paribas Open", "screen_name": "BNPPARIBASOPEN", "indices": [51, 66]}, {"id_str": "64391043", "name": "Tecnifibre", "screen_name": "tecnifibre", "indices": [67, 78]}], "urls": [], "hashtags": [], "symbols": []}, "favorite_count": 40, "favorited": false, "full_text": "@iga_swiatek @WTA @XiaomiPL @GrupaPZU @ASICSTennis @BNPPARIBASOPEN @tecnifibre Fundacja Dajemy Dzieciom Si\u0142\u0119 i ich telefon zaufania dla dzieci i m\u0142odzie\u017cy 116 111!", "in_reply_to_screen_name": "iga_swiatek", "in_reply_to_status_id_str": "1447348840164564994", "in_reply_to_user_id_str": "1087289365544534016", "is_quote_status": false, "lang": "pl", "quote_count": 0, "reply_count": 0, "retweet_count": 0, "retweeted": false, "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "user_id_str": "343414528", "id_str": "1447421977170415619"}}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:45.272470+02:00", "raw_value": {"__typename": "Tweet", "rest_id": "1447422080014770176", "has_birdwatch_notes": false, "core": {"user_results": {"result": {"__typename": "User", "id": "VXNlcjoxMjM5NjMyNTI3Mzk4MTQxOTUy", "rest_id": "1239632527398141952", "affiliates_highlighted_label": {}, "legacy": {"created_at": "Mon Mar 16 19:20:18 +0000 2020", "default_profile": true, "default_profile_image": false, "description": "The revolution is evolution of consciousness \ud83d\udc9a #ElectoralReform #MakeVotesMatter Unapologetic do-gooder\ud83d\udc7d \nViews my own, typos expected. Rt not endorsement", "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "legislation.gov.uk/ukpga/1984/22", "expanded_url": "http://www.legislation.gov.uk/ukpga/1984/22", "url": "https://t.co/uIbSkCqNzr", "indices": [0, 23]}]}}, "fast_followers_count": 0, "favourites_count": 21303, "followers_count": 1095, "friends_count": 2180, "has_custom_timelines": false, "is_translator": false, "listed_count": 0, "location": "116123 Samaritans\u2764\ufe0falways forU", "media_count": 262, "name": "Mask wearing is caring \u2764\ufe0f #FBPPR", "normal_followers_count": 1095, "pinned_tweet_ids_str": ["1370262740695138304"], "profile_banner_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 48.24, "rgb": {"blue": 81, "green": 171, "red": 152}}, {"percentage": 22.89, "rgb": {"blue": 34, "green": 50, "red": 11}}, {"percentage": 10.05, "rgb": {"blue": 128, "green": 135, "red": 111}}, {"percentage": 3.85, "rgb": {"blue": 37, "green": 83, "red": 144}}, {"percentage": 3.6, "rgb": {"blue": 30, "green": 210, "red": 250}}]}}}}, "profile_banner_url": "https://pbs.twimg.com/profile_banners/1239632527398141952/1631077410", "profile_image_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 35.66, "rgb": {"blue": 1, "green": 0, "red": 2}}, {"percentage": 5.51, "rgb": {"blue": 34, "green": 40, "red": 110}}, {"percentage": 5.04, "rgb": {"blue": 201, "green": 170, "red": 142}}, {"percentage": 4.9, "rgb": {"blue": 181, "green": 186, "red": 208}}, {"percentage": 3.11, "rgb": {"blue": 32, "green": 58, "red": 200}}]}}}}, "profile_image_url_https": "https://pbs.twimg.com/profile_images/1262639474569285633/RVd3Z4rM_normal.jpg", "profile_interstitial_type": "", "protected": false, "screen_name": "TTAlien1", "statuses_count": 7112, "translator_type": "none", "url": "https://t.co/uIbSkCqNzr", "verified": false, "withheld_in_countries": []}, "super_follow_eligible": false, "super_followed_by": false, "super_following": false}}}, "legacy": {"created_at": "Mon Oct 11 04:41:30 +0000 2021", "conversation_id_str": "1447348840164564994", "display_text_range": [79, 359], "entities": {"user_mentions": [{"id_str": "1087289365544534016", "name": "Iga \u015awi\u0105tek", "screen_name": "iga_swiatek", "indices": [0, 12]}, {"id_str": "17158140", "name": "wta", "screen_name": "WTA", "indices": [13, 17]}, {"id_str": "1252575285293260800", "name": "Xiaomi Polska", "screen_name": "XiaomiPL", "indices": [18, 27]}, {"id_str": "603617274", "name": "Grupa PZU", "screen_name": "GrupaPZU", "indices": [28, 37]}, {"id_str": "3111250452", "name": "ASICS Tennis", "screen_name": "ASICSTennis", "indices": [38, 50]}, {"id_str": "30017071", "name": "BNP Paribas Open", "screen_name": "BNPPARIBASOPEN", "indices": [51, 66]}, {"id_str": "64391043", "name": "Tecnifibre", "screen_name": "tecnifibre", "indices": [67, 78]}], "urls": [], "hashtags": [], "symbols": []}, "favorite_count": 32, "favorited": false, "full_text": "@iga_swiatek @WTA @XiaomiPL @GrupaPZU @ASICSTennis @BNPPARIBASOPEN @tecnifibre Psychiatria dziecieca w Warszawie sie sypie. Prosze wesprzec place personelu, Bo wszyscy oprocz jednego zlozyli wypowiedzenia.\nGdy nie bedzie personelu, oddzial zostanie zamkniety. Jeszcze wiekszy dramat I tragedie. Rodziny zostana bez pomocy, albo rozdzielone setkami kilometrow.", "in_reply_to_screen_name": "iga_swiatek", "in_reply_to_status_id_str": "1447348840164564994", "in_reply_to_user_id_str": "1087289365544534016", "is_quote_status": false, "lang": "pl", "quote_count": 0, "reply_count": 0, "retweet_count": 0, "retweeted": false, "source": "<a href=\"https://mobile.twitter.com\" rel=\"nofollow\">Twitter Web App</a>", "user_id_str": "1239632527398141952", "id_str": "1447422080014770176"}}}
is_cursor True last_scrapped_zero False
need_guest_token True
run request RequestDetails(http_method=<HttpMethod.GET: 1>, url='https://twitter.com/i/api/graphql/kUnCMgMYZCR8GyRZz76IQg/TweetDetail', headers={'Authorization': 'Bearer AAAAAAAAAAAAAAAAAAAAANRILgAAAAAAnNwIzUejRCOuH5E6I8xnZz4puTs%3D1Zv7ttfk8LF81IUq16cHjhLTvJu4FA33AGWWjCpTnA', 'x-guest-token': '1448607906950168577'}, params={'variables': '{"focalTweetId": "1447348840164564994", "with_rux_injections": true, "includePromotedContent": true, "withCommunity": true, "withTweetQuoteCount": true, "withBirdwatchNotes": true, "withSuperFollowsUserFields": true, "withUserResults": true, "withBirdwatchPivots": true, "withReactionsMetadata": true, "withReactionsPerspective": true, "withSuperFollowsTweetFields": true, "withVoice": true, "cursor": "VAIAAPANHBn2QYSAuc2L-YKWKILAo5XE1YKWKIaAqfXvpxIA8ACArN3LioeWKIbAvqnbroQSAPARssWD8YWWKJKAudmbuKCWKITAuM2s34OWKIDAvoGkiZoSAFC58Y2Wg1EA8Qi9hb2_gpYoiMC9tcuqk5YohICy7b6KhWwA0PmI-oOWKI6ArNWuuYMkAEG5qYX1hwDwCLjJ-d6iliiMwLm1vq-CliiOwL3J_tmLWgBQspWwjZ2QAPAHufHVzIKWKIqAs_XpuoSWKICAudW242wAUYCzxduxvQBQsumypoIbAEGz0cGRGwBBubnZiC0A4L3p6pCFliiQwLLhmdWMvQBBuf2pwhsAULP10K2jYwBQvZ26-ZIOAVG59b6xhH4AMaHkmHUA4Ln97sGCliiMgLK52f6FGwBRor2rz4N1AEDdkuCFPwBRsNXSp6NsAEDN0u6GzwBQvpnyloQ_AFGqsePdlhsAQOWh8ZD8AFCssfyAnIcAQbDhgP4FAUG-3fKVbABBsvW_uRIAULCpg6aTJADhvenI0qKWKJLAvtnIjZ82AEH5ppieOwFAtbf-kgkAULmFsaOJkABRs9nemon8AEGhn_-IywEx1YvCVgFRsvWci5rPADH5zpzdAVCzwf6gopAAQL61wdsKAmLAqInKnpBEASGygdgA4bid4I6iliiUwL3Fm9OC7wHQpfuJlZYoJQISFQ4AAA"}'}, timeout=20)
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:45.688158+02:00", "raw_value": {"__typename": "Tweet", "rest_id": "1447425787716677633", "has_birdwatch_notes": false, "core": {"user_results": {"result": {"__typename": "User", "id": "VXNlcjoxNDE2OTUzNzkxNDIxNzQ3MjA2", "rest_id": "1416953791421747206", "affiliates_highlighted_label": {}, "legacy": {"created_at": "Mon Jul 19 02:51:42 +0000 2021", "default_profile": true, "default_profile_image": false, "description": "Blog y p\u00e1gina de informaci\u00f3n sobre el mundo del tenis.", "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "lililobo.substack.com", "expanded_url": "https://lililobo.substack.com/", "url": "https://t.co/XbsqnaXxZH", "indices": [0, 23]}]}}, "fast_followers_count": 0, "favourites_count": 278, "followers_count": 17, "friends_count": 231, "has_custom_timelines": false, "is_translator": false, "listed_count": 1, "location": "Torre\u00f3n, M\u00e9xico", "media_count": 370, "name": "Wild Card by Lili Lobo", "normal_followers_count": 17, "pinned_tweet_ids_str": ["1443096731541979136"], "profile_banner_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 70.37, "rgb": {"blue": 255, "green": 255, "red": 255}}, {"percentage": 11.12, "rgb": {"blue": 78, "green": 119, "red": 188}}, {"percentage": 9.79, "rgb": {"blue": 38, "green": 38, "red": 47}}, {"percentage": 2.67, "rgb": {"blue": 42, "green": 67, "red": 111}}, {"percentage": 1.74, "rgb": {"blue": 158, "green": 211, "red": 253}}]}}}}, "profile_banner_url": "https://pbs.twimg.com/profile_banners/1416953791421747206/1626665286", "profile_image_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 82.22, "rgb": {"blue": 255, "green": 255, "red": 255}}, {"percentage": 8.79, "rgb": {"blue": 19, "green": 19, "red": 28}}, {"percentage": 3.83, "rgb": {"blue": 66, "green": 184, "red": 134}}, {"percentage": 1.38, "rgb": {"blue": 12, "green": 225, "red": 193}}, {"percentage": 1.25, "rgb": {"blue": 164, "green": 220, "red": 197}}]}}}}, "profile_image_url_https": "https://pbs.twimg.com/profile_images/1416953997055905795/x3YFhkub_normal.jpg", "profile_interstitial_type": "", "protected": false, "screen_name": "WCLiliLobo", "statuses_count": 532, "translator_type": "none", "url": "https://t.co/XbsqnaXxZH", "verified": false, "withheld_in_countries": []}, "super_follow_eligible": false, "super_followed_by": false, "super_following": false}}}, "legacy": {"created_at": "Mon Oct 11 04:56:14 +0000 2021", "conversation_id_str": "1447348840164564994", "display_text_range": [79, 217], "entities": {"user_mentions": [{"id_str": "1087289365544534016", "name": "Iga \u015awi\u0105tek", "screen_name": "iga_swiatek", "indices": [0, 12]}, {"id_str": "17158140", "name": "wta", "screen_name": "WTA", "indices": [13, 17]}, {"id_str": "1252575285293260800", "name": "Xiaomi Polska", "screen_name": "XiaomiPL", "indices": [18, 27]}, {"id_str": "603617274", "name": "Grupa PZU", "screen_name": "GrupaPZU", "indices": [28, 37]}, {"id_str": "3111250452", "name": "ASICS Tennis", "screen_name": "ASICSTennis", "indices": [38, 50]}, {"id_str": "30017071", "name": "BNP Paribas Open", "screen_name": "BNPPARIBASOPEN", "indices": [51, 66]}, {"id_str": "64391043", "name": "Tecnifibre", "screen_name": "tecnifibre", "indices": [67, 78]}], "urls": [], "hashtags": [], "symbols": []}, "favorite_count": 5, "favorited": false, "full_text": "@iga_swiatek @WTA @XiaomiPL @GrupaPZU @ASICSTennis @BNPPARIBASOPEN @tecnifibre Like we say in Mexico... \"eres una chingona \ud83d\udcaa\ud83d\udcaa\ud83d\udcaa\", is something like you're the best but with strongers words. Thank you for be an example!", "in_reply_to_screen_name": "iga_swiatek", "in_reply_to_status_id_str": "1447348840164564994", "in_reply_to_user_id_str": "1087289365544534016", "is_quote_status": false, "lang": "en", "quote_count": 0, "reply_count": 0, "retweet_count": 0, "retweeted": false, "source": "<a href=\"https://mobile.twitter.com\" rel=\"nofollow\">Twitter Web App</a>", "user_id_str": "1416953791421747206", "id_str": "1447425787716677633"}}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:45.688457+02:00", "raw_value": {"__typename": "Tweet", "rest_id": "1447429306167267329", "has_birdwatch_notes": false, "core": {"user_results": {"result": {"__typename": "User", "id": "VXNlcjoyODI1MDIxNDg3", "rest_id": "2825021487", "affiliates_highlighted_label": {}, "legacy": {"created_at": "Sun Oct 12 13:52:30 +0000 2014", "default_profile": true, "default_profile_image": false, "description": "psy , najlepszy przyjaciel cz\u0142owieka \u2764\ufe0f\ud83d\udc15\u200d\ud83e\uddba\u2764", "entities": {"description": {"urls": []}}, "fast_followers_count": 0, "favourites_count": 53969, "followers_count": 506, "friends_count": 659, "has_custom_timelines": true, "is_translator": false, "listed_count": 2, "location": "Krak\u00f3w, Polska", "media_count": 747, "name": "A P i tyle \ud83d\udc4d\u270c", "normal_followers_count": 506, "pinned_tweet_ids_str": [], "profile_banner_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 28.58, "rgb": {"blue": 27, "green": 44, "red": 49}}, {"percentage": 18.48, "rgb": {"blue": 123, "green": 129, "red": 134}}, {"percentage": 18.3, "rgb": {"blue": 92, "green": 183, "red": 155}}, {"percentage": 9.88, "rgb": {"blue": 75, "green": 110, "red": 154}}, {"percentage": 6.25, "rgb": {"blue": 31, "green": 72, "red": 48}}]}}}}, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2825021487/1627230451", "profile_image_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 48.13, "rgb": {"blue": 231, "green": 189, "red": 136}}, {"percentage": 18.21, "rgb": {"blue": 56, "green": 57, "red": 74}}, {"percentage": 11.3, "rgb": {"blue": 159, "green": 171, "red": 181}}, {"percentage": 7.7, "rgb": {"blue": 48, "green": 72, "red": 138}}, {"percentage": 7.42, "rgb": {"blue": 88, "green": 110, "red": 106}}]}}}}, "profile_image_url_https": "https://pbs.twimg.com/profile_images/1442805441185173512/M2CrLYkw_normal.jpg", "profile_interstitial_type": "", "protected": false, "screen_name": "vicek1906", "statuses_count": 16540, "translator_type": "none", "verified": false, "withheld_in_countries": []}, "super_follow_eligible": false, "super_followed_by": false, "super_following": false}}}, "legacy": {"created_at": "Mon Oct 11 05:10:13 +0000 2021", "conversation_id_str": "1447348840164564994", "display_text_range": [79, 92], "entities": {"user_mentions": [{"id_str": "1087289365544534016", "name": "Iga \u015awi\u0105tek", "screen_name": "iga_swiatek", "indices": [0, 12]}, {"id_str": "17158140", "name": "wta", "screen_name": "WTA", "indices": [13, 17]}, {"id_str": "1252575285293260800", "name": "Xiaomi Polska", "screen_name": "XiaomiPL", "indices": [18, 27]}, {"id_str": "603617274", "name": "Grupa PZU", "screen_name": "GrupaPZU", "indices": [28, 37]}, {"id_str": "3111250452", "name": "ASICS Tennis", "screen_name": "ASICSTennis", "indices": [38, 50]}, {"id_str": "30017071", "name": "BNP Paribas Open", "screen_name": "BNPPARIBASOPEN", "indices": [51, 66]}, {"id_str": "64391043", "name": "Tecnifibre", "screen_name": "tecnifibre", "indices": [67, 78]}], "urls": [], "hashtags": [], "symbols": []}, "favorite_count": 0, "favorited": false, "full_text": "@iga_swiatek @WTA @XiaomiPL @GrupaPZU @ASICSTennis @BNPPARIBASOPEN @tecnifibre Brawo Iga \u2764\u2764\u2764", "in_reply_to_screen_name": "iga_swiatek", "in_reply_to_status_id_str": "1447348840164564994", "in_reply_to_user_id_str": "1087289365544534016", "is_quote_status": false, "lang": "pl", "quote_count": 0, "reply_count": 0, "retweet_count": 0, "retweeted": false, "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "user_id_str": "2825021487", "id_str": "1447429306167267329"}}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:45.688688+02:00", "raw_value": {"__typename": "Tweet", "rest_id": "1447431861244997632", "has_birdwatch_notes": false, "core": {"user_results": {"result": {"__typename": "User", "id": "VXNlcjoxMzQ3OTk4ODI1NjMwMzYzNjQ4", "rest_id": "1347998825630363648", "affiliates_highlighted_label": {}, "legacy": {"created_at": "Sat Jan 09 20:09:07 +0000 2021", "default_profile": true, "default_profile_image": false, "description": "#skijumpingfamily \u2764\ufe0f Dawid Kubacki \u2764\ufe0f\nIga \u015awi\u0105tek \u2764\ufe0f\ud83c\udfbe\ud83c\udfbe", "entities": {"description": {"urls": []}}, "fast_followers_count": 0, "favourites_count": 4655, "followers_count": 25, "friends_count": 99, "has_custom_timelines": false, "is_translator": false, "listed_count": 0, "location": "Warszawa, Polska", "media_count": 6, "name": "i love Iga \u015awi\u0105tek", "normal_followers_count": 25, "pinned_tweet_ids_str": [], "profile_banner_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 63.52, "rgb": {"blue": 226, "green": 226, "red": 226}}, {"percentage": 10.39, "rgb": {"blue": 23, "green": 23, "red": 25}}, {"percentage": 9.81, "rgb": {"blue": 50, "green": 36, "red": 202}}, {"percentage": 5.27, "rgb": {"blue": 137, "green": 133, "red": 216}}, {"percentage": 2.58, "rgb": {"blue": 44, "green": 37, "red": 147}}]}}}}, "profile_banner_url": "https://pbs.twimg.com/profile_banners/1347998825630363648/1626514295", "profile_image_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 42.25, "rgb": {"blue": 242, "green": 231, "red": 226}}, {"percentage": 21.57, "rgb": {"blue": 37, "green": 36, "red": 49}}, {"percentage": 7.95, "rgb": {"blue": 95, "green": 104, "red": 139}}, {"percentage": 4.92, "rgb": {"blue": 77, "green": 59, "red": 45}}, {"percentage": 3.77, "rgb": {"blue": 27, "green": 36, "red": 108}}]}}}}, "profile_image_url_https": "https://pbs.twimg.com/profile_images/1444222428893392897/w7yDErSq_normal.jpg", "profile_interstitial_type": "", "protected": false, "screen_name": "skokowa_fanka", "statuses_count": 335, "translator_type": "none", "verified": false, "withheld_in_countries": []}, "super_follow_eligible": false, "super_followed_by": false, "super_following": false}}}, "legacy": {"created_at": "Mon Oct 11 05:20:22 +0000 2021", "conversation_id_str": "1447348840164564994", "display_text_range": [79, 99], "entities": {"user_mentions": [{"id_str": "1087289365544534016", "name": "Iga \u015awi\u0105tek", "screen_name": "iga_swiatek", "indices": [0, 12]}, {"id_str": "17158140", "name": "wta", "screen_name": "WTA", "indices": [13, 17]}, {"id_str": "1252575285293260800", "name": "Xiaomi Polska", "screen_name": "XiaomiPL", "indices": [18, 27]}, {"id_str": "603617274", "name": "Grupa PZU", "screen_name": "GrupaPZU", "indices": [28, 37]}, {"id_str": "3111250452", "name": "ASICS Tennis", "screen_name": "ASICSTennis", "indices": [38, 50]}, {"id_str": "30017071", "name": "BNP Paribas Open", "screen_name": "BNPPARIBASOPEN", "indices": [51, 66]}, {"id_str": "64391043", "name": "Tecnifibre", "screen_name": "tecnifibre", "indices": [67, 78]}], "urls": [], "hashtags": [], "symbols": []}, "favorite_count": 0, "favorited": false, "full_text": "@iga_swiatek @WTA @XiaomiPL @GrupaPZU @ASICSTennis @BNPPARIBASOPEN @tecnifibre jeste\u015b wspania\u0142a! \u2764\ufe0f", "in_reply_to_screen_name": "iga_swiatek", "in_reply_to_status_id_str": "1447348840164564994", "in_reply_to_user_id_str": "1087289365544534016", "is_quote_status": false, "lang": "pl", "quote_count": 0, "reply_count": 0, "retweet_count": 0, "retweeted": false, "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "user_id_str": "1347998825630363648", "id_str": "1447431861244997632"}}}
is_cursor True last_scrapped_zero False
need_guest_token True
run request RequestDetails(http_method=<HttpMethod.GET: 1>, url='https://twitter.com/i/api/graphql/kUnCMgMYZCR8GyRZz76IQg/TweetDetail', headers={'Authorization': 'Bearer AAAAAAAAAAAAAAAAAAAAANRILgAAAAAAnNwIzUejRCOuH5E6I8xnZz4puTs%3D1Zv7ttfk8LF81IUq16cHjhLTvJu4FA33AGWWjCpTnA', 'x-guest-token': '1448607906950168577'}, params={'variables': '{"focalTweetId": "1447348840164564994", "with_rux_injections": true, "includePromotedContent": true, "withCommunity": true, "withTweetQuoteCount": true, "withBirdwatchNotes": true, "withSuperFollowsUserFields": true, "withUserResults": true, "withBirdwatchPivots": true, "withReactionsMetadata": true, "withReactionsPerspective": true, "withSuperFollowsTweetFields": true, "withVoice": true, "cursor": "bwIAAPANHBn2RISAuc2L-YKWKILAo5XE1YKWKIaAqfXvpxIA8ACArN3LioeWKIbAvqnbroQSAPARssWD8YWWKJKAudmbuKCWKITAuM2s34OWKIDAvoGkiZoSAFC58Y2Wg1EA8Qi9hb2_gpYoiMC9tcuqk5YohICy7b6KhWwA0PmI-oOWKI6ArNWuuYMkAEG5qYX1hwDwCLjJ-d6iliiMwLm1vq-CliiOwL3J_tmLWgBQspWwjZ2QAPAHufHVzIKWKIqAs_XpuoSWKICAudW242wAUYCzxduxvQBQsumypoIbAEGz0cGRGwBBubnZiC0A4L3p6pCFliiQwLLhmdWMvQBBuf2pwhsAULP10K2jYwBQvZ26-ZIOAVG59b6xhH4AQaHkmIItAEDh_OanfgDguf3uwYKWKIyAsrnZ_oUkAFGivavPg34AQN2S4IVIAFGw1dKno3UAQM3S7obYAFC-mfKWhD8AUaqx492WGwBA5aHxkAUBUKyx_ICcYwBBsOGA_g4BQb7d8pXqAEGy9b-5EgBQsKmDppMkAOG96cjSopYoksC-2ciNnzYAQfmmmJ5EAUH5n9KmCQBAtbf-kgkAULmFsaOJmQBRs9nemokOAUGhn_-IpwFBubmFpeYBMdWLwnEBUbL1nIua4QAx-c6c-AFQs8H-oKKiAEC-tcHbJQJiwKiJyp6QXwEhsoHqAOG4neCOopYolMC9xZvTggoC0KX7iZWWKCUCEhUOAAA"}'}, timeout=20)
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:46.175098+02:00", "raw_value": {"__typename": "Tweet", "rest_id": "1447432435227054080", "has_birdwatch_notes": false, "core": {"user_results": {"result": {"__typename": "User", "id": "VXNlcjoxNDA4OTU3MzA3OTQyMjExNTg1", "rest_id": "1408957307942211585", "affiliates_highlighted_label": {}, "legacy": {"created_at": "Sun Jun 27 01:16:35 +0000 2021", "default_profile": true, "default_profile_image": false, "description": "\u2022 Tive q fazer esse por conta do algoritmo / \u2728 \ud83c\udde7\ud83c\uddf7 \u2728 \u2022 \ud83c\udfbe Rublev \u2022 Raducanu \u2022 Swiatek \u2022 Osaka \u2022 RBA \u2022 big 3 (Nadal, Federer, Serena) \u2022 \ud83d\udef9 Rayssa \u26bd\ufe0f\ud83c\udfc0 SPFC \ud83c\uddfe\ud83c\uddea", "entities": {"description": {"urls": []}}, "fast_followers_count": 0, "favourites_count": 7962, "followers_count": 86, "friends_count": 155, "has_custom_timelines": true, "is_translator": false, "listed_count": 2, "location": "", "media_count": 1008, "name": "Carol \u2022 \ud83d\udc89", "normal_followers_count": 86, "pinned_tweet_ids_str": ["1448432624876281857"], "profile_banner_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 43.91, "rgb": {"blue": 57, "green": 115, "red": 95}}, {"percentage": 38.15, "rgb": {"blue": 16, "green": 30, "red": 23}}, {"percentage": 5.03, "rgb": {"blue": 33, "green": 65, "red": 57}}, {"percentage": 4.63, "rgb": {"blue": 186, "green": 195, "red": 206}}, {"percentage": 2.18, "rgb": {"blue": 53, "green": 84, "red": 82}}]}}}}, "profile_banner_url": "https://pbs.twimg.com/profile_banners/1408957307942211585/1629733523", "profile_image_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 47.95, "rgb": {"blue": 170, "green": 189, "red": 204}}, {"percentage": 33.54, "rgb": {"blue": 45, "green": 48, "red": 62}}, {"percentage": 6.02, "rgb": {"blue": 68, "green": 87, "red": 137}}, {"percentage": 3.86, "rgb": {"blue": 83, "green": 59, "red": 54}}, {"percentage": 1.97, "rgb": {"blue": 159, "green": 127, "red": 111}}]}}}}, "profile_image_url_https": "https://pbs.twimg.com/profile_images/1409191143313707013/pAdONoyE_normal.jpg", "profile_interstitial_type": "", "protected": false, "screen_name": "dionisiacaa_", "statuses_count": 5773, "translator_type": "none", "verified": false, "withheld_in_countries": []}, "super_follow_eligible": false, "super_followed_by": false, "super_following": false}}}, "legacy": {"created_at": "Mon Oct 11 05:22:39 +0000 2021", "conversation_id_str": "1447348840164564994", "display_text_range": [79, 95], "entities": {"user_mentions": [{"id_str": "1087289365544534016", "name": "Iga \u015awi\u0105tek", "screen_name": "iga_swiatek", "indices": [0, 12]}, {"id_str": "17158140", "name": "wta", "screen_name": "WTA", "indices": [13, 17]}, {"id_str": "1252575285293260800", "name": "Xiaomi Polska", "screen_name": "XiaomiPL", "indices": [18, 27]}, {"id_str": "603617274", "name": "Grupa PZU", "screen_name": "GrupaPZU", "indices": [28, 37]}, {"id_str": "3111250452", "name": "ASICS Tennis", "screen_name": "ASICSTennis", "indices": [38, 50]}, {"id_str": "30017071", "name": "BNP Paribas Open", "screen_name": "BNPPARIBASOPEN", "indices": [51, 66]}, {"id_str": "64391043", "name": "Tecnifibre", "screen_name": "tecnifibre", "indices": [67, 78]}], "urls": [], "hashtags": [], "symbols": []}, "favorite_count": 0, "favorited": false, "full_text": "@iga_swiatek @WTA @XiaomiPL @GrupaPZU @ASICSTennis @BNPPARIBASOPEN @tecnifibre very inspiring \u2728", "in_reply_to_screen_name": "iga_swiatek", "in_reply_to_status_id_str": "1447348840164564994", "in_reply_to_user_id_str": "1087289365544534016", "is_quote_status": false, "lang": "en", "quote_count": 0, "reply_count": 0, "retweet_count": 0, "retweeted": false, "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "user_id_str": "1408957307942211585", "id_str": "1447432435227054080"}}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:46.175330+02:00", "raw_value": {"__typename": "Tweet", "rest_id": "1447433256413143041", "has_birdwatch_notes": false, "core": {"user_results": {"result": {"__typename": "User", "id": "VXNlcjozMTM3MzAyNDIy", "rest_id": "3137302422", "affiliates_highlighted_label": {}, "legacy": {"created_at": "Fri Apr 03 18:48:48 +0000 2015", "default_profile": false, "default_profile_image": false, "description": "#OBIEKTYWNY #REF Co r\u0119k\u0105 wyczynia #Maradona ogl\u0105da\u0142em jako dzieciak. Wsz\u0119dzie pr\u00f3buj\u0119 wnosi\u0107 warto\u015b\u0107\ud83d\udc4d\ud83c\udffb Hejt\u26d4 \ud83d\udca5\u26f0\ufe0f\ud83d\ude96\u26bd\ud83d\udeb4\u200d\u2640\ufe0f\ud83c\udfc3\u200d\u2642\ufe0f\ud83c\udfbe\ud83c\udfc4\u200d\u2642\ufe0f\ud83c\udf04\ud83c\udfb6", "entities": {"description": {"urls": []}}, "fast_followers_count": 0, "favourites_count": 5074, "followers_count": 100, "friends_count": 274, "has_custom_timelines": false, "is_translator": false, "listed_count": 4, "location": "\ud83c\udf0d WARSAW EU", "media_count": 422, "name": "eL REF", "normal_followers_count": 100, "pinned_tweet_ids_str": [], "profile_banner_extensions": {"mediaColor": {"r": {}}}, "profile_banner_url": "https://pbs.twimg.com/profile_banners/3137302422/1428087097", "profile_image_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 46.92, "rgb": {"blue": 214, "green": 105, "red": 1}}, {"percentage": 16.37, "rgb": {"blue": 163, "green": 152, "red": 167}}, {"percentage": 15.86, "rgb": {"blue": 2, "green": 176, "red": 254}}, {"percentage": 4.27, "rgb": {"blue": 14, "green": 220, "red": 254}}, {"percentage": 3.45, "rgb": {"blue": 2, "green": 121, "red": 233}}]}}}}, "profile_image_url_https": "https://pbs.twimg.com/profile_images/1333012076726546432/dSRbVYMj_normal.jpg", "profile_interstitial_type": "", "protected": false, "screen_name": "eL_REF_", "statuses_count": 4828, "translator_type": "none", "verified": false, "withheld_in_countries": []}, "super_follow_eligible": false, "super_followed_by": false, "super_following": false}}}, "legacy": {"created_at": "Mon Oct 11 05:25:54 +0000 2021", "conversation_id_str": "1447348840164564994", "display_text_range": [79, 81], "entities": {"user_mentions": [{"id_str": "1087289365544534016", "name": "Iga \u015awi\u0105tek", "screen_name": "iga_swiatek", "indices": [0, 12]}, {"id_str": "17158140", "name": "wta", "screen_name": "WTA", "indices": [13, 17]}, {"id_str": "1252575285293260800", "name": "Xiaomi Polska", "screen_name": "XiaomiPL", "indices": [18, 27]}, {"id_str": "603617274", "name": "Grupa PZU", "screen_name": "GrupaPZU", "indices": [28, 37]}, {"id_str": "3111250452", "name": "ASICS Tennis", "screen_name": "ASICSTennis", "indices": [38, 50]}, {"id_str": "30017071", "name": "BNP Paribas Open", "screen_name": "BNPPARIBASOPEN", "indices": [51, 66]}, {"id_str": "64391043", "name": "Tecnifibre", "screen_name": "tecnifibre", "indices": [67, 78]}], "urls": [], "hashtags": [], "symbols": []}, "favorite_count": 0, "favorited": false, "full_text": "@iga_swiatek @WTA @XiaomiPL @GrupaPZU @ASICSTennis @BNPPARIBASOPEN @tecnifibre \ud83d\udc4f\ud83c\udffc", "in_reply_to_screen_name": "iga_swiatek", "in_reply_to_status_id_str": "1447348840164564994", "in_reply_to_user_id_str": "1087289365544534016", "is_quote_status": false, "lang": "und", "quote_count": 0, "reply_count": 0, "retweet_count": 0, "retweeted": false, "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "user_id_str": "3137302422", "id_str": "1447433256413143041"}}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:46.175593+02:00", "raw_value": {"__typename": "Tweet", "rest_id": "1447434071668412424", "has_birdwatch_notes": false, "core": {"user_results": {"result": {"__typename": "User", "id": "VXNlcjoxMjc1MzY0OTky", "rest_id": "1275364992", "affiliates_highlighted_label": {}, "legacy": {"created_at": "Sun Mar 17 16:20:14 +0000 2013", "default_profile": true, "default_profile_image": false, "description": "", "entities": {"description": {"urls": []}}, "fast_followers_count": 0, "favourites_count": 337, "followers_count": 4, "friends_count": 23, "has_custom_timelines": false, "is_translator": false, "listed_count": 0, "location": "", "media_count": 0, "name": "anna", "normal_followers_count": 4, "pinned_tweet_ids_str": [], "profile_banner_extensions": {"mediaColor": {"r": {}}}, "profile_image_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 38.6, "rgb": {"blue": 16, "green": 14, "red": 31}}, {"percentage": 25.45, "rgb": {"blue": 170, "green": 165, "red": 160}}, {"percentage": 12.3, "rgb": {"blue": 135, "green": 144, "red": 195}}, {"percentage": 6.96, "rgb": {"blue": 114, "green": 108, "red": 86}}, {"percentage": 3.27, "rgb": {"blue": 38, "green": 47, "red": 83}}]}}}}, "profile_image_url_https": "https://pbs.twimg.com/profile_images/1387379273686790144/e2p-l5vS_normal.jpg", "profile_interstitial_type": "", "protected": false, "screen_name": "andomanus", "statuses_count": 87, "translator_type": "none", "verified": false, "withheld_in_countries": []}, "super_follow_eligible": false, "super_followed_by": false, "super_following": false}}}, "legacy": {"created_at": "Mon Oct 11 05:29:09 +0000 2021", "conversation_id_str": "1447348840164564994", "display_text_range": [79, 93], "entities": {"user_mentions": [{"id_str": "1087289365544534016", "name": "Iga \u015awi\u0105tek", "screen_name": "iga_swiatek", "indices": [0, 12]}, {"id_str": "17158140", "name": "wta", "screen_name": "WTA", "indices": [13, 17]}, {"id_str": "1252575285293260800", "name": "Xiaomi Polska", "screen_name": "XiaomiPL", "indices": [18, 27]}, {"id_str": "603617274", "name": "Grupa PZU", "screen_name": "GrupaPZU", "indices": [28, 37]}, {"id_str": "3111250452", "name": "ASICS Tennis", "screen_name": "ASICSTennis", "indices": [38, 50]}, {"id_str": "30017071", "name": "BNP Paribas Open", "screen_name": "BNPPARIBASOPEN", "indices": [51, 66]}, {"id_str": "64391043", "name": "Tecnifibre", "screen_name": "tecnifibre", "indices": [67, 78]}], "urls": [], "hashtags": [], "symbols": []}, "favorite_count": 1, "favorited": false, "full_text": "@iga_swiatek @WTA @XiaomiPL @GrupaPZU @ASICSTennis @BNPPARIBASOPEN @tecnifibre \u2764\ufe0f\u2764\ufe0f\u2764\ufe0fno words", "in_reply_to_screen_name": "iga_swiatek", "in_reply_to_status_id_str": "1447348840164564994", "in_reply_to_user_id_str": "1087289365544534016", "is_quote_status": false, "lang": "en", "quote_count": 0, "reply_count": 0, "retweet_count": 0, "retweeted": false, "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "user_id_str": "1275364992", "id_str": "1447434071668412424"}}}
is_cursor True last_scrapped_zero False
need_guest_token True
run request RequestDetails(http_method=<HttpMethod.GET: 1>, url='https://twitter.com/i/api/graphql/kUnCMgMYZCR8GyRZz76IQg/TweetDetail', headers={'Authorization': 'Bearer AAAAAAAAAAAAAAAAAAAAANRILgAAAAAAnNwIzUejRCOuH5E6I8xnZz4puTs%3D1Zv7ttfk8LF81IUq16cHjhLTvJu4FA33AGWWjCpTnA', 'x-guest-token': '1448607906950168577'}, params={'variables': '{"focalTweetId": "1447348840164564994", "with_rux_injections": true, "includePromotedContent": true, "withCommunity": true, "withTweetQuoteCount": true, "withBirdwatchNotes": true, "withSuperFollowsUserFields": true, "withUserResults": true, "withBirdwatchPivots": true, "withReactionsMetadata": true, "withReactionsPerspective": true, "withSuperFollowsTweetFields": true, "withVoice": true, "cursor": "igIAAPEWHBn2R4SAuc2L-YKWKIKAvcmXuKiWKILAo5XE1YKWKIaAqfXvpxsA4Kzdy4qHliiGwL6p266EEgDwEbLFg_GFliiSgLnZm7igliiEwLjNrN-DliiAwL6BpImaEgBQufGNloNRAPEIvYW9v4KWKIjAvbXLqpOWKISAsu2-ioVsAND5iPqDliiOgKzVrrmDJABAuamF9XUAYMC4yfneolEA8AiyobGIqJYojMC5tb6vgpYojsC9yf7Zi2MAULKVsI2dmQDwB7nx1cyCliiKgLP16bqEliiAgLnVtuN1AFGAs8XbscYAULLpsqaCGwBBs9HBkRsAQbm52YgtAOC96eqQhZYokMCy4ZnVjHUAQbn9qcIbAFCz9dCto2MAUL2duvmSFwFRufW-sYR-AEGh5JiCLQBA4fzmp34A4Ln97sGCliiMgLK52f6FJABRor2rz4N-AEDdkuCFSABRsNXSp6N1AEDN0u6G2ABQvpnyloQ_AFGqsePdlhsAQOWh8ZAOAVCssfyAnGMAQbDhgP4XAUG-3fKV6gBBsvW_uRIAULCpg6aTJADgvenI0qKWKJLAvtnIjZ_PAFG-2dHnqD8AQfmmmJ5WAUH5n9KmCQBAtbf-kgkAULmFsaOJogBRs9nemokXAUGhn_-IuQFBubmFpfgBMdWLwnoBUbL1nIua6gAx-c6cCgJQs8H-oKKrAEC-tcHbNwJiwKiJyp6QaAEhsoHzAOG4neCOopYolMC9xZvTghwC0KX7iZWWKCUCEhUOAAA"}'}, timeout=20)
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:46.681131+02:00", "raw_value": {"__typename": "Tweet", "rest_id": "1447435209746616323", "has_birdwatch_notes": false, "core": {"user_results": {"result": {"__typename": "User", "id": "VXNlcjoxNDE2MDAzNDEwODAxODU2NTE1", "rest_id": "1416003410801856515", "affiliates_highlighted_label": {}, "legacy": {"created_at": "Fri Jul 16 11:55:08 +0000 2021", "default_profile": true, "default_profile_image": true, "description": "", "entities": {"description": {"urls": []}}, "fast_followers_count": 0, "favourites_count": 910, "followers_count": 1, "friends_count": 3, "has_custom_timelines": false, "is_translator": false, "listed_count": 0, "location": "", "media_count": 0, "name": "Jakub Pytko", "normal_followers_count": 1, "pinned_tweet_ids_str": [], "profile_image_url_https": "https://abs.twimg.com/sticky/default_profile_images/default_profile_normal.png", "profile_interstitial_type": "", "protected": false, "screen_name": "PytkoJakub", "statuses_count": 194, "translator_type": "none", "verified": false, "withheld_in_countries": []}, "super_follow_eligible": false, "super_followed_by": false, "super_following": false}}}, "legacy": {"created_at": "Mon Oct 11 05:33:40 +0000 2021", "conversation_id_str": "1447348840164564994", "display_text_range": [79, 102], "entities": {"user_mentions": [{"id_str": "1087289365544534016", "name": "Iga \u015awi\u0105tek", "screen_name": "iga_swiatek", "indices": [0, 12]}, {"id_str": "17158140", "name": "wta", "screen_name": "WTA", "indices": [13, 17]}, {"id_str": "1252575285293260800", "name": "Xiaomi Polska", "screen_name": "XiaomiPL", "indices": [18, 27]}, {"id_str": "603617274", "name": "Grupa PZU", "screen_name": "GrupaPZU", "indices": [28, 37]}, {"id_str": "3111250452", "name": "ASICS Tennis", "screen_name": "ASICSTennis", "indices": [38, 50]}, {"id_str": "30017071", "name": "BNP Paribas Open", "screen_name": "BNPPARIBASOPEN", "indices": [51, 66]}, {"id_str": "64391043", "name": "Tecnifibre", "screen_name": "tecnifibre", "indices": [67, 78]}], "urls": [], "hashtags": [], "symbols": []}, "favorite_count": 1, "favorited": false, "full_text": "@iga_swiatek @WTA @XiaomiPL @GrupaPZU @ASICSTennis @BNPPARIBASOPEN @tecnifibre Iga jeste\u015b niesamowita.", "in_reply_to_screen_name": "iga_swiatek", "in_reply_to_status_id_str": "1447348840164564994", "in_reply_to_user_id_str": "1087289365544534016", "is_quote_status": false, "lang": "pl", "quote_count": 0, "reply_count": 0, "retweet_count": 0, "retweeted": false, "source": "<a href=\"https://mobile.twitter.com\" rel=\"nofollow\">Twitter Web App</a>", "user_id_str": "1416003410801856515", "id_str": "1447435209746616323"}}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:46.681318+02:00", "raw_value": {"__typename": "Tweet", "rest_id": "1447436509397848065", "has_birdwatch_notes": false, "core": {"user_results": {"result": {"__typename": "User", "id": "VXNlcjoxMjE5MzE4NzMzNTg5NjE4Njg5", "rest_id": "1219318733589618689", "affiliates_highlighted_label": {}, "legacy": {"created_at": "Mon Jan 20 18:01:23 +0000 2020", "default_profile": true, "default_profile_image": false, "description": "KUBA", "entities": {"description": {"urls": []}}, "fast_followers_count": 0, "favourites_count": 91592, "followers_count": 851, "friends_count": 1465, "has_custom_timelines": false, "is_translator": false, "listed_count": 0, "location": "Cz\u0119stochowa, Polska", "media_count": 482, "name": "\ud83c\udfc1\ud83c\udd3a\ud83c\udd44\ud83c\udd31\ud83c\udd30\ud83c\udfc1", "normal_followers_count": 851, "pinned_tweet_ids_str": [], "profile_banner_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 68.75, "rgb": {"blue": 24, "green": 24, "red": 24}}, {"percentage": 19.42, "rgb": {"blue": 3, "green": 4, "red": 229}}, {"percentage": 6.99, "rgb": {"blue": 91, "green": 79, "red": 253}}, {"percentage": 2.11, "rgb": {"blue": 12, "green": 10, "red": 121}}, {"percentage": 0.64, "rgb": {"blue": 35, "green": 30, "red": 76}}]}}}}, "profile_banner_url": "https://pbs.twimg.com/profile_banners/1219318733589618689/1592665566", "profile_image_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 89.37, "rgb": {"blue": 25, "green": 25, "red": 25}}, {"percentage": 6.15, "rgb": {"blue": 5, "green": 4, "red": 229}}, {"percentage": 2.57, "rgb": {"blue": 88, "green": 77, "red": 252}}, {"percentage": 0.96, "rgb": {"blue": 12, "green": 10, "red": 129}}, {"percentage": 0.4, "rgb": {"blue": 14, "green": 14, "red": 57}}]}}}}, "profile_image_url_https": "https://pbs.twimg.com/profile_images/1219319508407595008/SOmhoQWr_normal.jpg", "profile_interstitial_type": "", "protected": false, "screen_name": "KUBAKUBA08", "statuses_count": 12870, "translator_type": "none", "verified": false, "withheld_in_countries": []}, "super_follow_eligible": false, "super_followed_by": false, "super_following": false}}}, "legacy": {"created_at": "Mon Oct 11 05:38:50 +0000 2021", "conversation_id_str": "1447348840164564994", "display_text_range": [79, 96], "entities": {"user_mentions": [{"id_str": "1087289365544534016", "name": "Iga \u015awi\u0105tek", "screen_name": "iga_swiatek", "indices": [0, 12]}, {"id_str": "17158140", "name": "wta", "screen_name": "WTA", "indices": [13, 17]}, {"id_str": "1252575285293260800", "name": "Xiaomi Polska", "screen_name": "XiaomiPL", "indices": [18, 27]}, {"id_str": "603617274", "name": "Grupa PZU", "screen_name": "GrupaPZU", "indices": [28, 37]}, {"id_str": "3111250452", "name": "ASICS Tennis", "screen_name": "ASICSTennis", "indices": [38, 50]}, {"id_str": "30017071", "name": "BNP Paribas Open", "screen_name": "BNPPARIBASOPEN", "indices": [51, 66]}, {"id_str": "64391043", "name": "Tecnifibre", "screen_name": "tecnifibre", "indices": [67, 78]}], "urls": [], "hashtags": [], "symbols": []}, "favorite_count": 0, "favorited": false, "full_text": "@iga_swiatek @WTA @XiaomiPL @GrupaPZU @ASICSTennis @BNPPARIBASOPEN @tecnifibre WIELKI CZ\u0141OWIEK\u2764\ufe0f", "in_reply_to_screen_name": "iga_swiatek", "in_reply_to_status_id_str": "1447348840164564994", "in_reply_to_user_id_str": "1087289365544534016", "is_quote_status": false, "lang": "pl", "quote_count": 0, "reply_count": 0, "retweet_count": 0, "retweeted": false, "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "user_id_str": "1219318733589618689", "id_str": "1447436509397848065"}}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:46.681429+02:00", "raw_value": {"__typename": "Tweet", "rest_id": "1447436513210470400", "has_birdwatch_notes": false, "core": {"user_results": {"result": {"__typename": "User", "id": "VXNlcjoxMzE0OTQ1NjE5ODYyMTk2MjI0", "rest_id": "1314945619862196224", "affiliates_highlighted_label": {}, "legacy": {"created_at": "Sat Oct 10 15:07:31 +0000 2020", "default_profile": true, "default_profile_image": false, "description": "Instagram: pati_rec", "entities": {"description": {"urls": []}}, "fast_followers_count": 0, "favourites_count": 2545, "followers_count": 16, "friends_count": 36, "has_custom_timelines": false, "is_translator": false, "listed_count": 0, "location": "", "media_count": 13, "name": "Patrycja", "normal_followers_count": 16, "pinned_tweet_ids_str": [], "profile_image_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 68.36, "rgb": {"blue": 165, "green": 165, "red": 164}}, {"percentage": 13.37, "rgb": {"blue": 74, "green": 81, "red": 96}}, {"percentage": 11.21, "rgb": {"blue": 111, "green": 124, "red": 156}}, {"percentage": 4.22, "rgb": {"blue": 167, "green": 140, "red": 115}}, {"percentage": 1.17, "rgb": {"blue": 128, "green": 124, "red": 178}}]}}}}, "profile_image_url_https": "https://pbs.twimg.com/profile_images/1314945925874417665/ggp1l23x_normal.jpg", "profile_interstitial_type": "", "protected": false, "screen_name": "Patrycj00325192", "statuses_count": 116, "translator_type": "none", "verified": false, "withheld_in_countries": []}, "super_follow_eligible": false, "super_followed_by": false, "super_following": false}}}, "legacy": {"created_at": "Mon Oct 11 05:38:51 +0000 2021", "conversation_id_str": "1447348840164564994", "display_text_range": [79, 109], "entities": {"user_mentions": [{"id_str": "1087289365544534016", "name": "Iga \u015awi\u0105tek", "screen_name": "iga_swiatek", "indices": [0, 12]}, {"id_str": "17158140", "name": "wta", "screen_name": "WTA", "indices": [13, 17]}, {"id_str": "1252575285293260800", "name": "Xiaomi Polska", "screen_name": "XiaomiPL", "indices": [18, 27]}, {"id_str": "603617274", "name": "Grupa PZU", "screen_name": "GrupaPZU", "indices": [28, 37]}, {"id_str": "3111250452", "name": "ASICS Tennis", "screen_name": "ASICSTennis", "indices": [38, 50]}, {"id_str": "30017071", "name": "BNP Paribas Open", "screen_name": "BNPPARIBASOPEN", "indices": [51, 66]}, {"id_str": "64391043", "name": "Tecnifibre", "screen_name": "tecnifibre", "indices": [67, 78]}], "urls": [], "hashtags": [], "symbols": []}, "favorite_count": 2, "favorited": false, "full_text": "@iga_swiatek @WTA @XiaomiPL @GrupaPZU @ASICSTennis @BNPPARIBASOPEN @tecnifibre Co\u015b pi\u0119knego! Jeste\u015b wielka \u2764\ud83c\udfc5", "in_reply_to_screen_name": "iga_swiatek", "in_reply_to_status_id_str": "1447348840164564994", "in_reply_to_user_id_str": "1087289365544534016", "is_quote_status": false, "lang": "pl", "quote_count": 0, "reply_count": 0, "retweet_count": 0, "retweeted": false, "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "user_id_str": "1314945619862196224", "id_str": "1447436513210470400"}}}
is_cursor True last_scrapped_zero False
need_guest_token True
run request RequestDetails(http_method=<HttpMethod.GET: 1>, url='https://twitter.com/i/api/graphql/kUnCMgMYZCR8GyRZz76IQg/TweetDetail', headers={'Authorization': 'Bearer AAAAAAAAAAAAAAAAAAAAANRILgAAAAAAnNwIzUejRCOuH5E6I8xnZz4puTs%3D1Zv7ttfk8LF81IUq16cHjhLTvJu4FA33AGWWjCpTnA', 'x-guest-token': '1448607906950168577'}, params={'variables': '{"focalTweetId": "1447348840164564994", "with_rux_injections": true, "includePromotedContent": true, "withCommunity": true, "withTweetQuoteCount": true, "withBirdwatchNotes": true, "withSuperFollowsUserFields": true, "withUserResults": true, "withBirdwatchPivots": true, "withReactionsMetadata": true, "withReactionsPerspective": true, "withSuperFollowsTweetFields": true, "withVoice": true, "cursor": "pQIAAPAOHBn2SoSAuc2L-YKWKIKAvcmXuKiWKILAuJnE9akJANGjlcTVgpYohoCp9e-nJADgrN3LioeWKIbAvqnbroQSAPARssWD8YWWKJKAudmbuKCWKITAuM2s34OWKIDAvoGkiZoSAFC58Y2Wg1EA8Qi9hb2_gpYoiMC9tcuqk5YohICy7b6KhWwA0PmI-oOWKI6ArNWuuYMkAFG5qYX1gpAAQMn53qJRAPAIsqGxiKiWKIzAubW-r4KWKI7Avcn-2YtjAFCylbCNnZkA8Ae58dXMgpYoioCz9em6hJYogIC51bbjdQBRgLPF27HGAFCy6bKmghsAQbPRwZEbAEG5udmILQDgvenqkIWWKJDAsuGZ1Yx1AEG5_anCGwBQs_XQraNjAFC9nbr5khcBQLn1vrEbAGHAuM3g9amHAEGh5JiCNgBA4fzmp4cA4Ln97sGCliiMgLK52f6FJABRor2rz4OHAEDdkuCFUQBRsNXSp6N-AEDN0u6G4QBQvpnyloQ_AFCqsePdliQAUbiF8ampJABA5aHxkCABUKyx_ICcbABBsOGA_ikBQb7d8pX8AEGy9b-5EgBQsKmDppMkAOC96cjSopYoksC-2ciNn-EAUb7Z0eeoPwBB-aaYnmgBQfmf0qYJAEC1t_6SCQBQuYWxo4mrAFGz2d6aiSkBQaGf_4jLAUG5uYWlCgIx1YvCjAFRsvWci5rzADH5zpwcAlCzwf6goqsAQL61wdtJAmLAqInKnpB6ASGygfwA4bid4I6iliiUwL3Fm9OCLgLQpfuJlZYoJQISFQ4AAA"}'}, timeout=20)
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:47.123240+02:00", "raw_value": {"__typename": "Tweet", "rest_id": "1447436596106649601", "has_birdwatch_notes": false, "core": {"user_results": {"result": {"__typename": "User", "id": "VXNlcjo0ODcyMDA4NTg5", "rest_id": "4872008589", "affiliates_highlighted_label": {}, "legacy": {"created_at": "Tue Feb 02 16:28:50 +0000 2016", "default_profile": false, "default_profile_image": false, "description": "jestem", "entities": {"description": {"urls": []}}, "fast_followers_count": 0, "favourites_count": 2355, "followers_count": 1473, "friends_count": 3255, "has_custom_timelines": true, "is_translator": false, "listed_count": 2, "location": "Warszawa, Polska", "media_count": 241, "name": "staryalejary\ud83c\uddea\ud83c\uddfa\ud83c\uddf5\ud83c\uddf1\u26f7\ud83c\udfc3\ud83c\udfca\u200d\u2642\ufe0f\ud83d\udea3\ud83d\udeb5\u200d\u2642\ufe0f", "normal_followers_count": 1473, "pinned_tweet_ids_str": [], "profile_banner_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 24.31, "rgb": {"blue": 175, "green": 116, "red": 69}}, {"percentage": 19.75, "rgb": {"blue": 24, "green": 28, "red": 184}}, {"percentage": 15.5, "rgb": {"blue": 15, "green": 20, "red": 37}}, {"percentage": 9.12, "rgb": {"blue": 15, "green": 20, "red": 103}}, {"percentage": 7.09, "rgb": {"blue": 233, "green": 228, "red": 234}}]}}}}, "profile_banner_url": "https://pbs.twimg.com/profile_banners/4872008589/1589979690", "profile_image_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 67.15, "rgb": {"blue": 254, "green": 254, "red": 254}}, {"percentage": 23.16, "rgb": {"blue": 103, "green": 103, "red": 103}}, {"percentage": 16.17, "rgb": {"blue": 53, "green": 53, "red": 53}}]}}}}, "profile_image_url_https": "https://pbs.twimg.com/profile_images/847127308863463424/K1SL4x04_normal.jpg", "profile_interstitial_type": "", "protected": false, "screen_name": "Tomaszjatoja", "statuses_count": 19045, "translator_type": "none", "verified": false, "withheld_in_countries": []}, "super_follow_eligible": false, "super_followed_by": false, "super_following": false}}}, "legacy": {"created_at": "Mon Oct 11 05:39:11 +0000 2021", "conversation_id_str": "1447348840164564994", "display_text_range": [79, 82], "entities": {"user_mentions": [{"id_str": "1087289365544534016", "name": "Iga \u015awi\u0105tek", "screen_name": "iga_swiatek", "indices": [0, 12]}, {"id_str": "17158140", "name": "wta", "screen_name": "WTA", "indices": [13, 17]}, {"id_str": "1252575285293260800", "name": "Xiaomi Polska", "screen_name": "XiaomiPL", "indices": [18, 27]}, {"id_str": "603617274", "name": "Grupa PZU", "screen_name": "GrupaPZU", "indices": [28, 37]}, {"id_str": "3111250452", "name": "ASICS Tennis", "screen_name": "ASICSTennis", "indices": [38, 50]}, {"id_str": "30017071", "name": "BNP Paribas Open", "screen_name": "BNPPARIBASOPEN", "indices": [51, 66]}, {"id_str": "64391043", "name": "Tecnifibre", "screen_name": "tecnifibre", "indices": [67, 78]}], "urls": [], "hashtags": [], "symbols": []}, "favorite_count": 0, "favorited": false, "full_text": "@iga_swiatek @WTA @XiaomiPL @GrupaPZU @ASICSTennis @BNPPARIBASOPEN @tecnifibre \ud83d\udc4d\ud83d\udc4d\ud83d\udc4d", "in_reply_to_screen_name": "iga_swiatek", "in_reply_to_status_id_str": "1447348840164564994", "in_reply_to_user_id_str": "1087289365544534016", "is_quote_status": false, "lang": "und", "quote_count": 0, "reply_count": 0, "retweet_count": 0, "retweeted": false, "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "user_id_str": "4872008589", "id_str": "1447436596106649601"}}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:47.123426+02:00", "raw_value": {"__typename": "Tweet", "rest_id": "1447437103290363904", "has_birdwatch_notes": false, "core": {"user_results": {"result": {"__typename": "User", "id": "VXNlcjoxMTgxMTE4NDI=", "rest_id": "118111842", "affiliates_highlighted_label": {}, "legacy": {"created_at": "Sat Feb 27 16:51:22 +0000 2010", "default_profile": true, "default_profile_image": false, "description": "Bu d\u00fcnyan\u0131n hesab\u0131 bu d\u00fcnyada sorulacak!", "entities": {"description": {"urls": []}}, "fast_followers_count": 0, "favourites_count": 70719, "followers_count": 1252, "friends_count": 2089, "has_custom_timelines": true, "is_translator": false, "listed_count": 6, "location": "", "media_count": 480, "name": "Bar\u0131\u015f \u00d6zel", "normal_followers_count": 1252, "pinned_tweet_ids_str": [], "profile_banner_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 41.19, "rgb": {"blue": 194, "green": 179, "red": 163}}, {"percentage": 34.65, "rgb": {"blue": 36, "green": 34, "red": 32}}, {"percentage": 5.56, "rgb": {"blue": 55, "green": 67, "red": 95}}, {"percentage": 2.25, "rgb": {"blue": 158, "green": 125, "red": 112}}, {"percentage": 0.82, "rgb": {"blue": 46, "green": 51, "red": 123}}]}}}}, "profile_banner_url": "https://pbs.twimg.com/profile_banners/118111842/1624294778", "profile_image_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 64.45, "rgb": {"blue": 92, "green": 89, "red": 82}}, {"percentage": 14.76, "rgb": {"blue": 34, "green": 19, "red": 91}}, {"percentage": 8.96, "rgb": {"blue": 255, "green": 255, "red": 254}}, {"percentage": 4.57, "rgb": {"blue": 68, "green": 76, "red": 118}}, {"percentage": 3.16, "rgb": {"blue": 31, "green": 25, "red": 45}}]}}}}, "profile_image_url_https": "https://pbs.twimg.com/profile_images/1406217149329379328/5IgNNizK_normal.jpg", "profile_interstitial_type": "", "protected": false, "screen_name": "ozelbaris", "statuses_count": 11743, "translator_type": "none", "verified": false, "withheld_in_countries": []}, "super_follow_eligible": false, "super_followed_by": false, "super_following": false}}}, "legacy": {"created_at": "Mon Oct 11 05:41:12 +0000 2021", "conversation_id_str": "1447348840164564994", "display_text_range": [79, 177], "entities": {"user_mentions": [{"id_str": "1087289365544534016", "name": "Iga \u015awi\u0105tek", "screen_name": "iga_swiatek", "indices": [0, 12]}, {"id_str": "17158140", "name": "wta", "screen_name": "WTA", "indices": [13, 17]}, {"id_str": "1252575285293260800", "name": "Xiaomi Polska", "screen_name": "XiaomiPL", "indices": [18, 27]}, {"id_str": "603617274", "name": "Grupa PZU", "screen_name": "GrupaPZU", "indices": [28, 37]}, {"id_str": "3111250452", "name": "ASICS Tennis", "screen_name": "ASICSTennis", "indices": [38, 50]}, {"id_str": "30017071", "name": "BNP Paribas Open", "screen_name": "BNPPARIBASOPEN", "indices": [51, 66]}, {"id_str": "64391043", "name": "Tecnifibre", "screen_name": "tecnifibre", "indices": [67, 78]}], "urls": [], "hashtags": [], "symbols": []}, "favorite_count": 1, "favorited": false, "full_text": "@iga_swiatek @WTA @XiaomiPL @GrupaPZU @ASICSTennis @BNPPARIBASOPEN @tecnifibre I'm proud of you once again. Very nice anniversary action. I wish you career like October of 2020.", "in_reply_to_screen_name": "iga_swiatek", "in_reply_to_status_id_str": "1447348840164564994", "in_reply_to_user_id_str": "1087289365544534016", "is_quote_status": false, "lang": "en", "quote_count": 0, "reply_count": 0, "retweet_count": 0, "retweeted": false, "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "user_id_str": "118111842", "id_str": "1447437103290363904"}}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:47.123597+02:00", "raw_value": {"__typename": "Tweet", "rest_id": "1447437147812859911", "has_birdwatch_notes": false, "core": {"user_results": {"result": {"__typename": "User", "id": "VXNlcjoxMTMxNTEwMTgyMjY0MDk0NzIw", "rest_id": "1131510182264094720", "affiliates_highlighted_label": {}, "legacy": {"created_at": "Thu May 23 10:40:24 +0000 2019", "default_profile": true, "default_profile_image": false, "description": "Nie traktuj wszystkiego \u015bmiertelnie powa\u017cnie.\n#anwilwloclawek #muremzaWaca \ud83e\udd8d\ud83d\udcaa\n#radio #soszjale #koszykowka #lodz #gdynia", "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "instagram.com/blazewicz", "expanded_url": "http://www.instagram.com/blazewicz", "url": "https://t.co/qlcl0rq9pQ", "indices": [0, 23]}]}}, "fast_followers_count": 0, "favourites_count": 23464, "followers_count": 490, "friends_count": 263, "has_custom_timelines": false, "is_translator": false, "listed_count": 0, "location": "\u0141\u00f3d\u017a, Polska", "media_count": 1286, "name": "Ma\u0142go B\u0142a\u017cewicz \ud83d\udcfb\ud83c\udfc0\ud83c\uddf8\ud83c\uddf1\ud83e\udd84", "normal_followers_count": 490, "pinned_tweet_ids_str": ["1322408148813099008"], "profile_banner_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 91.57, "rgb": {"blue": 241, "green": 244, "red": 245}}, {"percentage": 2.47, "rgb": {"blue": 41, "green": 42, "red": 42}}, {"percentage": 2.42, "rgb": {"blue": 251, "green": 105, "red": 159}}, {"percentage": 0.91, "rgb": {"blue": 248, "green": 159, "red": 191}}, {"percentage": 0.29, "rgb": {"blue": 247, "green": 201, "red": 221}}]}}}}, "profile_banner_url": "https://pbs.twimg.com/profile_banners/1131510182264094720/1611533134", "profile_image_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 62.83, "rgb": {"blue": 140, "green": 139, "red": 142}}, {"percentage": 31.25, "rgb": {"blue": 20, "green": 18, "red": 34}}, {"percentage": 4.17, "rgb": {"blue": 21, "green": 43, "red": 73}}, {"percentage": 1.18, "rgb": {"blue": 128, "green": 132, "red": 194}}, {"percentage": 0.18, "rgb": {"blue": 173, "green": 175, "red": 231}}]}}}}, "profile_image_url_https": "https://pbs.twimg.com/profile_images/1366638384840667138/46bVIuCF_normal.jpg", "profile_interstitial_type": "", "protected": false, "screen_name": "malgo_blazewicz", "statuses_count": 8442, "translator_type": "none", "url": "https://t.co/qlcl0rq9pQ", "verified": false, "withheld_in_countries": []}, "super_follow_eligible": false, "super_followed_by": false, "super_following": false}}}, "legacy": {"created_at": "Mon Oct 11 05:41:22 +0000 2021", "conversation_id_str": "1447348840164564994", "display_text_range": [79, 107], "entities": {"user_mentions": [{"id_str": "1087289365544534016", "name": "Iga \u015awi\u0105tek", "screen_name": "iga_swiatek", "indices": [0, 12]}, {"id_str": "17158140", "name": "wta", "screen_name": "WTA", "indices": [13, 17]}, {"id_str": "1252575285293260800", "name": "Xiaomi Polska", "screen_name": "XiaomiPL", "indices": [18, 27]}, {"id_str": "603617274", "name": "Grupa PZU", "screen_name": "GrupaPZU", "indices": [28, 37]}, {"id_str": "3111250452", "name": "ASICS Tennis", "screen_name": "ASICSTennis", "indices": [38, 50]}, {"id_str": "30017071", "name": "BNP Paribas Open", "screen_name": "BNPPARIBASOPEN", "indices": [51, 66]}, {"id_str": "64391043", "name": "Tecnifibre", "screen_name": "tecnifibre", "indices": [67, 78]}, {"id_str": "1404544808039878656", "name": "Fundacja Dajemy Dzieciom Si\u0142\u0119", "screen_name": "DajemySile", "indices": [79, 90]}], "urls": [], "hashtags": [], "symbols": []}, "favorite_count": 1, "favorited": false, "full_text": "@iga_swiatek @WTA @XiaomiPL @GrupaPZU @ASICSTennis @BNPPARIBASOPEN @tecnifibre @DajemySile to dobry wyb\u00f3r \u270c", "in_reply_to_screen_name": "iga_swiatek", "in_reply_to_status_id_str": "1447348840164564994", "in_reply_to_user_id_str": "1087289365544534016", "is_quote_status": false, "lang": "pl", "quote_count": 0, "reply_count": 0, "retweet_count": 0, "retweeted": false, "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "user_id_str": "1131510182264094720", "id_str": "1447437147812859911"}}}
is_cursor True last_scrapped_zero False
need_guest_token True
run request RequestDetails(http_method=<HttpMethod.GET: 1>, url='https://twitter.com/i/api/graphql/kUnCMgMYZCR8GyRZz76IQg/TweetDetail', headers={'Authorization': 'Bearer AAAAAAAAAAAAAAAAAAAAANRILgAAAAAAnNwIzUejRCOuH5E6I8xnZz4puTs%3D1Zv7ttfk8LF81IUq16cHjhLTvJu4FA33AGWWjCpTnA', 'x-guest-token': '1448607906950168577'}, params={'variables': '{"focalTweetId": "1447348840164564994", "with_rux_injections": true, "includePromotedContent": true, "withCommunity": true, "withTweetQuoteCount": true, "withBirdwatchNotes": true, "withSuperFollowsUserFields": true, "withUserResults": true, "withBirdwatchPivots": true, "withReactionsMetadata": true, "withReactionsPerspective": true, "withSuperFollowsTweetFields": true, "withVoice": true, "cursor": "wAIAAPAOHBn2TYSAuc2L-YKWKIKAvcmXuKiWKILAuJnE9akJANGjlcTVgpYohoCp9e-nJADgrN3LioeWKIbAvqnbroQSAPARssWD8YWWKJKAudmbuKCWKITAuM2s34OWKIDAvYWNmKoJAFC-gaSJmhsAULnxjZaDWgDxCL2Fvb-CliiIwL21y6qTliiEgLLtvoqFdQDQ-Yj6g5YojoCs1a65gyQAUbmphfWCmQBAyfneolEA8AiyobGIqJYojMC5tb6vgpYojsC9yf7Zi2MAULKVsI2dEgBQuOHYmqqrAPAHufHVzIKWKIqAs_XpuoSWKICAudW2434AUYCzxdux2ABQsumypoIbAEGz0cGRGwBBubnZiC0A4L3p6pCFliiQwLLhmdWMfgBBuf2pwhsAULP10K2jYwBQvZ26-ZIpAUG59b6xFwFQs53K-qktAFG4zeD1qZkAQaHkmII_AEDh_OankADguf3uwYKWKIyAsrnZ_oUkAFGivavPg5AAQN2S4IVaAFGw1dKno4cAQM3S7obzAFC-mfKWhD8AUKqx492WJABRuIXxqakkAEDlofGQMgFQrLH8gJxsAEGw4YD-OwFBvt3ylQUBQbL1v7kSAFGwqYOmk6cB0OnI0qKWKJLAvtnIjZ_qAFG-2dHnqD8AQfmmmJ56AUH5n9KmCQBAtbf-kgkAUbmFsaOJ6gBB2d6aiTIBQaGf_4jdAUG5uYWlJQIx1YvCngFRsvWci5rzADL5zpwgAUDB_qCiqwBAvrXB22QCYsCoicqekIMBIbKB_ADhuJ3gjqKWKJTAvcWb04JAAtCl-4mVliglAhIVDgAA"}'}, timeout=20)
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:47.555577+02:00", "raw_value": {"__typename": "Tweet", "rest_id": "1447443010766184450", "has_birdwatch_notes": false, "core": {"user_results": {"result": {"__typename": "User", "id": "VXNlcjoxMzIwMzQyOTA5MzIxOTkwMTQ0", "rest_id": "1320342909321990144", "affiliates_highlighted_label": {}, "legacy": {"created_at": "Sun Oct 25 12:34:36 +0000 2020", "default_profile": true, "default_profile_image": false, "description": "", "entities": {"description": {"urls": []}}, "fast_followers_count": 0, "favourites_count": 974, "followers_count": 1, "friends_count": 39, "has_custom_timelines": false, "is_translator": false, "listed_count": 0, "location": "", "media_count": 1, "name": "maddie.bing", "normal_followers_count": 1, "pinned_tweet_ids_str": [], "profile_banner_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 38.77, "rgb": {"blue": 2, "green": 0, "red": 1}}, {"percentage": 9.21, "rgb": {"blue": 236, "green": 2, "red": 207}}, {"percentage": 7.56, "rgb": {"blue": 187, "green": 182, "red": 226}}, {"percentage": 5.05, "rgb": {"blue": 242, "green": 240, "red": 125}}, {"percentage": 4.74, "rgb": {"blue": 12, "green": 36, "red": 216}}]}}}}, "profile_banner_url": "https://pbs.twimg.com/profile_banners/1320342909321990144/1603804023", "profile_image_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 66.52, "rgb": {"blue": 255, "green": 255, "red": 255}}, {"percentage": 20.84, "rgb": {"blue": 78, "green": 106, "red": 136}}, {"percentage": 6.85, "rgb": {"blue": 130, "green": 165, "red": 200}}, {"percentage": 3.58, "rgb": {"blue": 31, "green": 42, "red": 70}}, {"percentage": 0.64, "rgb": {"blue": 25, "green": 38, "red": 91}}]}}}}, "profile_image_url_https": "https://pbs.twimg.com/profile_images/1321075283110318080/7xj1CSco_normal.jpg", "profile_interstitial_type": "", "protected": false, "screen_name": "MaddieBing", "statuses_count": 49, "translator_type": "none", "verified": false, "withheld_in_countries": []}, "super_follow_eligible": false, "super_followed_by": false, "super_following": false}}}, "legacy": {"created_at": "Mon Oct 11 06:04:40 +0000 2021", "conversation_id_str": "1447348840164564994", "display_text_range": [79, 182], "entities": {"user_mentions": [{"id_str": "1087289365544534016", "name": "Iga \u015awi\u0105tek", "screen_name": "iga_swiatek", "indices": [0, 12]}, {"id_str": "17158140", "name": "wta", "screen_name": "WTA", "indices": [13, 17]}, {"id_str": "1252575285293260800", "name": "Xiaomi Polska", "screen_name": "XiaomiPL", "indices": [18, 27]}, {"id_str": "603617274", "name": "Grupa PZU", "screen_name": "GrupaPZU", "indices": [28, 37]}, {"id_str": "3111250452", "name": "ASICS Tennis", "screen_name": "ASICSTennis", "indices": [38, 50]}, {"id_str": "30017071", "name": "BNP Paribas Open", "screen_name": "BNPPARIBASOPEN", "indices": [51, 66]}, {"id_str": "64391043", "name": "Tecnifibre", "screen_name": "tecnifibre", "indices": [67, 78]}, {"id_str": "1404544808039878656", "name": "Fundacja Dajemy Dzieciom Si\u0142\u0119", "screen_name": "DajemySile", "indices": [79, 90]}], "urls": [], "hashtags": [], "symbols": []}, "favorite_count": 7, "favorited": false, "full_text": "@iga_swiatek @WTA @XiaomiPL @GrupaPZU @ASICSTennis @BNPPARIBASOPEN @tecnifibre @DajemySile Bardzo potrzebna i pr\u0119\u017cna organizacja.  Bez \u017cadnego wsparcia ze strony pa\u0144stwa polskiego :(", "in_reply_to_screen_name": "iga_swiatek", "in_reply_to_status_id_str": "1447348840164564994", "in_reply_to_user_id_str": "1087289365544534016", "is_quote_status": false, "lang": "pl", "quote_count": 0, "reply_count": 0, "retweet_count": 0, "retweeted": false, "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "user_id_str": "1320342909321990144", "id_str": "1447443010766184450"}}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:47.555842+02:00", "raw_value": {"__typename": "Tweet", "rest_id": "1447443075685498886", "has_birdwatch_notes": false, "core": {"user_results": {"result": {"__typename": "User", "id": "VXNlcjoxNDQ1NzQ2NDA2MDA2Nzg4MTEx", "rest_id": "1445746406006788111", "affiliates_highlighted_label": {}, "legacy": {"created_at": "Wed Oct 06 13:43:09 +0000 2021", "default_profile": true, "default_profile_image": false, "description": "Tennis fan, Ruud, Hurkacz, Sinner, Shapo, Osaka, Halep, Swiatek, Leylah and Jabeur", "entities": {"description": {"urls": []}}, "fast_followers_count": 0, "favourites_count": 62, "followers_count": 98, "friends_count": 110, "has_custom_timelines": false, "is_translator": false, "listed_count": 0, "location": "", "media_count": 0, "name": "Tennis Paradise", "normal_followers_count": 98, "pinned_tweet_ids_str": [], "profile_image_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 37.11, "rgb": {"blue": 30, "green": 27, "red": 7}}, {"percentage": 20.73, "rgb": {"blue": 191, "green": 156, "red": 69}}, {"percentage": 18.37, "rgb": {"blue": 129, "green": 114, "red": 88}}, {"percentage": 6.85, "rgb": {"blue": 121, "green": 77, "red": 16}}, {"percentage": 4.48, "rgb": {"blue": 210, "green": 146, "red": 24}}]}}}}, "profile_image_url_https": "https://pbs.twimg.com/profile_images/1445746623208845322/saMZ3m4d_normal.jpg", "profile_interstitial_type": "", "protected": false, "screen_name": "TennisParadise1", "statuses_count": 117, "translator_type": "none", "verified": false, "withheld_in_countries": []}, "super_follow_eligible": false, "super_followed_by": false, "super_following": false}}}, "legacy": {"created_at": "Mon Oct 11 06:04:56 +0000 2021", "conversation_id_str": "1447348840164564994", "display_text_range": [79, 85], "entities": {"user_mentions": [{"id_str": "1087289365544534016", "name": "Iga \u015awi\u0105tek", "screen_name": "iga_swiatek", "indices": [0, 12]}, {"id_str": "17158140", "name": "wta", "screen_name": "WTA", "indices": [13, 17]}, {"id_str": "1252575285293260800", "name": "Xiaomi Polska", "screen_name": "XiaomiPL", "indices": [18, 27]}, {"id_str": "603617274", "name": "Grupa PZU", "screen_name": "GrupaPZU", "indices": [28, 37]}, {"id_str": "3111250452", "name": "ASICS Tennis", "screen_name": "ASICSTennis", "indices": [38, 50]}, {"id_str": "30017071", "name": "BNP Paribas Open", "screen_name": "BNPPARIBASOPEN", "indices": [51, 66]}, {"id_str": "64391043", "name": "Tecnifibre", "screen_name": "tecnifibre", "indices": [67, 78]}], "urls": [], "hashtags": [], "symbols": []}, "favorite_count": 0, "favorited": false, "full_text": "@iga_swiatek @WTA @XiaomiPL @GrupaPZU @ASICSTennis @BNPPARIBASOPEN @tecnifibre Iga \u2665\ufe0f", "in_reply_to_screen_name": "iga_swiatek", "in_reply_to_status_id_str": "1447348840164564994", "in_reply_to_user_id_str": "1087289365544534016", "is_quote_status": false, "lang": "und", "quote_count": 0, "reply_count": 0, "retweet_count": 0, "retweeted": false, "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "user_id_str": "1445746406006788111", "id_str": "1447443075685498886"}}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:47.556158+02:00", "raw_value": {"__typename": "Tweet", "rest_id": "1447443282338803712", "has_birdwatch_notes": false, "core": {"user_results": {"result": {"__typename": "User", "id": "VXNlcjoyNDQ5MzQ3Nw==", "rest_id": "24493477", "affiliates_highlighted_label": {}, "legacy": {"created_at": "Sun Mar 15 05:48:44 +0000 2009", "default_profile": false, "default_profile_image": false, "description": "IT Admin. \ud83c\udf31. Love sports, films, dogs, tech. Anti: catholicism, conservatism, monarchies. Pro-choice. Free Assange Palestine Tibet Scotland Britney. F*CK MAGA.", "entities": {"description": {"urls": []}}, "fast_followers_count": 0, "favourites_count": 27523, "followers_count": 498, "friends_count": 521, "has_custom_timelines": true, "is_translator": false, "listed_count": 13, "location": "Melbourne, Australia", "media_count": 1877, "name": ".", "normal_followers_count": 498, "pinned_tweet_ids_str": [], "profile_banner_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 74.07, "rgb": {"blue": 239, "green": 243, "red": 246}}, {"percentage": 15.19, "rgb": {"blue": 89, "green": 112, "red": 145}}, {"percentage": 3.4, "rgb": {"blue": 106, "green": 115, "red": 128}}, {"percentage": 3.25, "rgb": {"blue": 125, "green": 163, "red": 201}}, {"percentage": 2.27, "rgb": {"blue": 28, "green": 42, "red": 66}}]}}}}, "profile_banner_url": "https://pbs.twimg.com/profile_banners/24493477/1631089093", "profile_image_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 49.89, "rgb": {"blue": 30, "green": 31, "red": 33}}, {"percentage": 39.81, "rgb": {"blue": 156, "green": 155, "red": 157}}]}}}}, "profile_image_url_https": "https://pbs.twimg.com/profile_images/1270284769348038657/tPI8XpJk_normal.jpg", "profile_interstitial_type": "", "protected": false, "screen_name": "DaleKerr", "statuses_count": 26486, "translator_type": "none", "verified": false, "withheld_in_countries": []}, "super_follow_eligible": false, "super_followed_by": false, "super_following": false}}}, "legacy": {"created_at": "Mon Oct 11 06:05:45 +0000 2021", "conversation_id_str": "1447348840164564994", "display_text_range": [79, 106], "entities": {"user_mentions": [{"id_str": "1087289365544534016", "name": "Iga \u015awi\u0105tek", "screen_name": "iga_swiatek", "indices": [0, 12]}, {"id_str": "17158140", "name": "wta", "screen_name": "WTA", "indices": [13, 17]}, {"id_str": "1252575285293260800", "name": "Xiaomi Polska", "screen_name": "XiaomiPL", "indices": [18, 27]}, {"id_str": "603617274", "name": "Grupa PZU", "screen_name": "GrupaPZU", "indices": [28, 37]}, {"id_str": "3111250452", "name": "ASICS Tennis", "screen_name": "ASICSTennis", "indices": [38, 50]}, {"id_str": "30017071", "name": "BNP Paribas Open", "screen_name": "BNPPARIBASOPEN", "indices": [51, 66]}, {"id_str": "64391043", "name": "Tecnifibre", "screen_name": "tecnifibre", "indices": [67, 78]}], "urls": [], "hashtags": [], "symbols": []}, "favorite_count": 1, "favorited": false, "full_text": "@iga_swiatek @WTA @XiaomiPL @GrupaPZU @ASICSTennis @BNPPARIBASOPEN @tecnifibre sending love from Australia", "in_reply_to_screen_name": "iga_swiatek", "in_reply_to_status_id_str": "1447348840164564994", "in_reply_to_user_id_str": "1087289365544534016", "is_quote_status": false, "lang": "en", "quote_count": 0, "reply_count": 0, "retweet_count": 0, "retweeted": false, "source": "<a href=\"https://mobile.twitter.com\" rel=\"nofollow\">Twitter Web App</a>", "user_id_str": "24493477", "id_str": "1447443282338803712"}}}
is_cursor True last_scrapped_zero False
need_guest_token True
run request RequestDetails(http_method=<HttpMethod.GET: 1>, url='https://twitter.com/i/api/graphql/kUnCMgMYZCR8GyRZz76IQg/TweetDetail', headers={'Authorization': 'Bearer AAAAAAAAAAAAAAAAAAAAANRILgAAAAAAnNwIzUejRCOuH5E6I8xnZz4puTs%3D1Zv7ttfk8LF81IUq16cHjhLTvJu4FA33AGWWjCpTnA', 'x-guest-token': '1448607906950168577'}, params={'variables': '{"focalTweetId": "1447348840164564994", "with_rux_injections": true, "includePromotedContent": true, "withCommunity": true, "withTweetQuoteCount": true, "withBirdwatchNotes": true, "withSuperFollowsUserFields": true, "withUserResults": true, "withBirdwatchPivots": true, "withReactionsMetadata": true, "withReactionsPerspective": true, "withSuperFollowsTweetFields": true, "withVoice": true, "cursor": "2wIAAPAOHBn2UISAuc2L-YKWKIKAvcmXuKiWKILAuJnE9akJANGjlcTVgpYohoCp9e-nJADgrN3LioeWKIbAvqnbroQSAPARssWD8YWWKJKAudmbuKCWKITAuM2s34OWKIDAvYWNmKoJAFC-gaSJmhsAULnxjZaDWgDxCL2Fvb-CliiIwL21y6qTliiEgLLtvoqFdQAx-Yj6PwDgo8Xi_6yWKI6ArNWuuYMtAFG5qYX1gqIA0Mn53qKWKIyAqu3e86wtAPAIsqGxiKiWKIzAubW-r4KWKI7Avcn-2Yt1AFCylbCNnRIAULjh2JqqvQDwB7nx1cyCliiKgLP16bqEliiAgLnVtuOQAFGAs8XbseoAULLpsqaCGwBBs9HBkRsAQbm52YgtAOC96eqQhZYokMCy4ZnVjH4AQbn9qcIbAFCz9dCto2MAUL2duvmSOwFBufW-sSkBULOdyvqpLQBRuM3g9amZAEGh5JiCPwBA4fzmp5AAULn97sGC2ABQsrnZ_oUkAFGivavPg5AAQN2S4IVaAFGw1dKno4cAQM3S7obzAFC-mfKWhD8AUKqx492WJABRuIXxqakkAEDlofGQXwFQuZX776xEAVCssfyAnHUAQbDhgP5NAUG-3fKVDgFBsvW_uRIAUbCpg6aTwgHQ6cjSopYoksC-2ciNn_MAUb7Z0eeoPwBB-aaYnowBQfmf0qYJAEC1t_6SCQBRuYWxo4nzAEHZ3pqJOwFBoZ__iPgBQbm5haVAAjHVi8KnAVGy9ZyLmvwAMvnOnCkBQMH-oKKrAEC-tcHbfwJiwKiJyp6QjAEhsoEFAeG4neCOopYolMC9xZvTglsC0KX7iZWWKCUCEhUOAAA"}'}, timeout=20)
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:48.245242+02:00", "raw_value": {"__typename": "Tweet", "rest_id": "1447438877694779396", "has_birdwatch_notes": false, "core": {"user_results": {"result": {"__typename": "User", "id": "VXNlcjoxMjA4NzAyNjQw", "rest_id": "1208702640", "affiliates_highlighted_label": {}, "legacy": {"created_at": "Fri Feb 22 14:27:34 +0000 2013", "default_profile": false, "default_profile_image": false, "description": "Twitter.LP", "entities": {"description": {"urls": []}}, "fast_followers_count": 0, "favourites_count": 11247, "followers_count": 425, "friends_count": 729, "has_custom_timelines": true, "is_translator": false, "listed_count": 3, "location": "Pozna\u0144", "media_count": 173, "name": "Alan", "normal_followers_count": 425, "pinned_tweet_ids_str": ["1031611994770681856"], "profile_banner_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 93.99, "rgb": {"blue": 153, "green": 159, "red": 162}}, {"percentage": 6.01, "rgb": {"blue": 69, "green": 68, "red": 69}}]}}}}, "profile_banner_url": "https://pbs.twimg.com/profile_banners/1208702640/1598000528", "profile_image_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 45.75, "rgb": {"blue": 58, "green": 56, "red": 63}}, {"percentage": 22.05, "rgb": {"blue": 183, "green": 182, "red": 210}}, {"percentage": 8.14, "rgb": {"blue": 107, "green": 149, "red": 228}}, {"percentage": 4.27, "rgb": {"blue": 91, "green": 54, "red": 41}}, {"percentage": 1.79, "rgb": {"blue": 186, "green": 129, "red": 88}}]}}}}, "profile_image_url_https": "https://pbs.twimg.com/profile_images/1381367746743652352/ij2IEg9e_normal.jpg", "profile_interstitial_type": "", "protected": false, "screen_name": "EG_voc", "statuses_count": 5597, "translator_type": "none", "verified": false, "withheld_in_countries": []}, "super_follow_eligible": false, "super_followed_by": false, "super_following": false}}}, "card": {"rest_id": "https://t.co/sf2xJZinwJ", "legacy": {"binding_values": [{"key": "player_url", "value": {"string_value": "https://www.youtube.com/embed/rekHcbMa2WQ", "type": "STRING"}}, {"key": "player_image_large", "value": {"image_value": {"height": 627, "width": 1200, "url": "https://pbs.twimg.com/card_img/1447191861630746624/M7MZfxjq?format=jpg&name=1200x627"}, "type": "IMAGE"}}, {"key": "player_image", "value": {"image_value": {"height": 210, "width": 280, "url": "https://pbs.twimg.com/card_img/1447191861630746624/M7MZfxjq?format=jpg&name=280x280"}, "type": "IMAGE"}}, {"key": "app_star_rating", "value": {"string_value": "4.68756", "type": "STRING"}}, {"key": "description", "value": {"string_value": "MUSIMY CHCIE\u0106 SI\u0118 BA\u0106, to utw\u00f3r, do kt\u00f3rego tekst zosta\u0142 napisany na podstawie w\u0142asnych do\u015bwiadcze\u0144. Opowiada o walce z depresj\u0105 - podst\u0119pn\u0105 chorob\u0105, kt\u00f3ra w...", "type": "STRING"}}, {"key": "player_width", "value": {"string_value": "1280", "type": "STRING"}}, {"key": "domain", "value": {"string_value": "www.youtube.com", "type": "STRING"}}, {"key": "app_is_free", "value": {"string_value": "true", "type": "STRING"}}, {"key": "site", "value": {"scribe_key": "publisher_id", "type": "USER", "user_value": {"id_str": "10228272", "path": []}}}, {"key": "player_image_original", "value": {"image_value": {"height": 360, "width": 480, "url": "https://pbs.twimg.com/card_img/1447191861630746624/M7MZfxjq?format=jpg&name=orig"}, "type": "IMAGE"}}, {"key": "app_num_ratings", "value": {"string_value": "22,687,489", "type": "STRING"}}, {"key": "app_price_amount", "value": {"string_value": "0.0", "type": "STRING"}}, {"key": "player_height", "value": {"string_value": "720", "type": "STRING"}}, {"key": "vanity_url", "value": {"scribe_key": "vanity_url", "string_value": "youtube.com", "type": "STRING"}}, {"key": "app_name", "value": {"string_value": "YouTube: Watch, Listen, Stream", "type": "STRING"}}, {"key": "player_image_small", "value": {"image_value": {"height": 108, "width": 144, "url": "https://pbs.twimg.com/card_img/1447191861630746624/M7MZfxjq?format=jpg&name=144x144"}, "type": "IMAGE"}}, {"key": "title", "value": {"string_value": "Eleanor Gray - MUSIMY CHCIE\u0106 SI\u0118 BA\u0106", "type": "STRING"}}, {"key": "app_price_currency", "value": {"string_value": "USD", "type": "STRING"}}, {"key": "card_url", "value": {"scribe_key": "card_url", "string_value": "https://t.co/sf2xJZinwJ", "type": "STRING"}}, {"key": "player_image_x_large", "value": {"image_value": {"height": 360, "width": 480, "url": "https://pbs.twimg.com/card_img/1447191861630746624/M7MZfxjq?format=png&name=2048x2048_2_exp"}, "type": "IMAGE"}}], "card_platform": {"platform": {"audience": {"name": "production"}, "device": {"name": "Swift", "version": "12"}}}, "name": "player", "url": "https://t.co/sf2xJZinwJ", "user_refs": [{"id": "VXNlcjoxMDIyODI3Mg==", "rest_id": "10228272", "affiliates_highlighted_label": {}, "legacy": {"created_at": "Tue Nov 13 21:43:46 +0000 2007", "default_profile": false, "default_profile_image": false, "description": "#YouTubeShorts \u2014 Introducing the shorter side of YouTube", "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "youtube.com/shorts/H12Swqw\u2026", "expanded_url": "https://www.youtube.com/shorts/H12SwqwR2NE", "url": "https://t.co/kjUK7E8YAQ", "indices": [0, 23]}]}}, "fast_followers_count": 0, "favourites_count": 5742, "followers_count": 73507210, "friends_count": 1202, "has_custom_timelines": true, "is_translator": false, "listed_count": 79530, "location": "San Bruno, CA", "media_count": 13146, "name": "YouTube", "normal_followers_count": 73507210, "pinned_tweet_ids_str": [], "profile_banner_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 43.31, "rgb": {"blue": 140, "green": 11, "red": 62}}, {"percentage": 23.58, "rgb": {"blue": 75, "green": 161, "red": 1}}, {"percentage": 4.41, "rgb": {"blue": 87, "green": 108, "red": 25}}, {"percentage": 2.93, "rgb": {"blue": 31, "green": 106, "red": 141}}, {"percentage": 2.33, "rgb": {"blue": 118, "green": 46, "red": 38}}]}}}}, "profile_banner_url": "https://pbs.twimg.com/profile_banners/10228272/1631634387", "profile_image_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 70.88, "rgb": {"blue": 255, "green": 255, "red": 255}}, {"percentage": 27.69, "rgb": {"blue": 0, "green": 0, "red": 254}}, {"percentage": 0.86, "rgb": {"blue": 178, "green": 180, "red": 252}}, {"percentage": 0.37, "rgb": {"blue": 90, "green": 87, "red": 254}}, {"percentage": 0.15, "rgb": {"blue": 130, "green": 132, "red": 250}}]}}}}, "profile_image_url_https": "https://pbs.twimg.com/profile_images/1427292844612595720/RC1YSvuT_normal.jpg", "profile_interstitial_type": "", "protected": false, "screen_name": "YouTube", "statuses_count": 37541, "translator_type": "regular", "url": "https://t.co/kjUK7E8YAQ", "verified": true, "withheld_in_countries": []}, "super_follow_eligible": false, "super_followed_by": false, "super_following": false}]}}, "legacy": {"created_at": "Mon Oct 11 05:48:15 +0000 2021", "conversation_id_str": "1447348840164564994", "display_text_range": [79, 111], "entities": {"user_mentions": [{"id_str": "1087289365544534016", "name": "Iga \u015awi\u0105tek", "screen_name": "iga_swiatek", "indices": [0, 12]}, {"id_str": "17158140", "name": "wta", "screen_name": "WTA", "indices": [13, 17]}, {"id_str": "1252575285293260800", "name": "Xiaomi Polska", "screen_name": "XiaomiPL", "indices": [18, 27]}, {"id_str": "603617274", "name": "Grupa PZU", "screen_name": "GrupaPZU", "indices": [28, 37]}, {"id_str": "3111250452", "name": "ASICS Tennis", "screen_name": "ASICSTennis", "indices": [38, 50]}, {"id_str": "30017071", "name": "BNP Paribas Open", "screen_name": "BNPPARIBASOPEN", "indices": [51, 66]}, {"id_str": "64391043", "name": "Tecnifibre", "screen_name": "tecnifibre", "indices": [67, 78]}], "urls": [{"display_url": "youtu.be/rekHcbMa2WQ", "expanded_url": "https://youtu.be/rekHcbMa2WQ", "url": "https://t.co/sf2xJZinwJ", "indices": [79, 102]}], "hashtags": [], "symbols": []}, "favorite_count": 0, "favorited": false, "full_text": "@iga_swiatek @WTA @XiaomiPL @GrupaPZU @ASICSTennis @BNPPARIBASOPEN @tecnifibre https://t.co/sf2xJZinwJ\n\nWith \u2764\ufe0f", "in_reply_to_screen_name": "iga_swiatek", "in_reply_to_status_id_str": "1447348840164564994", "in_reply_to_user_id_str": "1087289365544534016", "is_quote_status": false, "lang": "en", "possibly_sensitive": false, "possibly_sensitive_editable": true, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "retweeted": false, "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "user_id_str": "1208702640", "id_str": "1447438877694779396"}}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:48.245610+02:00", "raw_value": {"__typename": "Tweet", "rest_id": "1447440338918989827", "has_birdwatch_notes": false, "core": {"user_results": {"result": {"__typename": "User", "id": "VXNlcjoyODkyOTk3MDI=", "rest_id": "289299702", "affiliates_highlighted_label": {}, "legacy": {"created_at": "Thu Apr 28 11:54:13 +0000 2011", "default_profile": false, "default_profile_image": false, "description": "Venus and Serena \u2206 Britney \u2206 Harry Potter \u2206 Vodka \u2206", "entities": {"description": {"urls": []}}, "fast_followers_count": 0, "favourites_count": 2632, "followers_count": 1445, "friends_count": 413, "has_custom_timelines": true, "is_translator": false, "listed_count": 16, "location": "Hogwarts", "media_count": 757, "name": "#FreeBritney", "normal_followers_count": 1445, "pinned_tweet_ids_str": ["1218878088211324933"], "profile_banner_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 71.08, "rgb": {"blue": 160, "green": 186, "red": 213}}, {"percentage": 20.09, "rgb": {"blue": 8, "green": 10, "red": 16}}, {"percentage": 4.38, "rgb": {"blue": 69, "green": 96, "red": 130}}, {"percentage": 0.73, "rgb": {"blue": 116, "green": 129, "red": 195}}, {"percentage": 0.2, "rgb": {"blue": 72, "green": 79, "red": 151}}]}}}}, "profile_banner_url": "https://pbs.twimg.com/profile_banners/289299702/1591595372", "profile_image_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 61.6, "rgb": {"blue": 236, "green": 224, "red": 218}}, {"percentage": 15.43, "rgb": {"blue": 148, "green": 186, "red": 230}}, {"percentage": 7.8, "rgb": {"blue": 137, "green": 73, "red": 206}}, {"percentage": 3.92, "rgb": {"blue": 74, "green": 73, "red": 237}}, {"percentage": 3.6, "rgb": {"blue": 108, "green": 234, "red": 245}}]}}}}, "profile_image_url_https": "https://pbs.twimg.com/profile_images/1408019476365430787/ZUFJ8gta_normal.jpg", "profile_interstitial_type": "", "protected": false, "screen_name": "slave4stu", "statuses_count": 22191, "translator_type": "none", "verified": false, "withheld_in_countries": []}, "super_follow_eligible": false, "super_followed_by": false, "super_following": false}}}, "legacy": {"created_at": "Mon Oct 11 05:54:03 +0000 2021", "conversation_id_str": "1447348840164564994", "display_text_range": [79, 94], "entities": {"user_mentions": [{"id_str": "1087289365544534016", "name": "Iga \u015awi\u0105tek", "screen_name": "iga_swiatek", "indices": [0, 12]}, {"id_str": "17158140", "name": "wta", "screen_name": "WTA", "indices": [13, 17]}, {"id_str": "1252575285293260800", "name": "Xiaomi Polska", "screen_name": "XiaomiPL", "indices": [18, 27]}, {"id_str": "603617274", "name": "Grupa PZU", "screen_name": "GrupaPZU", "indices": [28, 37]}, {"id_str": "3111250452", "name": "ASICS Tennis", "screen_name": "ASICSTennis", "indices": [38, 50]}, {"id_str": "30017071", "name": "BNP Paribas Open", "screen_name": "BNPPARIBASOPEN", "indices": [51, 66]}, {"id_str": "64391043", "name": "Tecnifibre", "screen_name": "tecnifibre", "indices": [67, 78]}], "urls": [], "hashtags": [], "symbols": []}, "favorite_count": 0, "favorited": false, "full_text": "@iga_swiatek @WTA @XiaomiPL @GrupaPZU @ASICSTennis @BNPPARIBASOPEN @tecnifibre Mikey\u2019s Line \ud83c\udf39\ud83d\udc9e", "in_reply_to_screen_name": "iga_swiatek", "in_reply_to_status_id_str": "1447348840164564994", "in_reply_to_user_id_str": "1087289365544534016", "is_quote_status": false, "lang": "en", "quote_count": 0, "reply_count": 0, "retweet_count": 0, "retweeted": false, "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "user_id_str": "289299702", "id_str": "1447440338918989827"}}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:48.245812+02:00", "raw_value": {"__typename": "Tweet", "rest_id": "1447444944633962498", "has_birdwatch_notes": false, "core": {"user_results": {"result": {"__typename": "User", "id": "VXNlcjo5NjIxMjkxODQyMDk0MjQzODY=", "rest_id": "962129184209424386", "affiliates_highlighted_label": {}, "legacy": {"created_at": "Sat Feb 10 01:00:47 +0000 2018", "default_profile": true, "default_profile_image": false, "description": "Life is what happens to us while we are busy making other plans. \u2014 Henry Cook", "entities": {"description": {"urls": []}}, "fast_followers_count": 0, "favourites_count": 62299, "followers_count": 150, "friends_count": 348, "has_custom_timelines": true, "is_translator": false, "listed_count": 0, "location": "", "media_count": 64, "name": "Iwu_sia", "normal_followers_count": 150, "pinned_tweet_ids_str": [], "profile_image_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 56.13, "rgb": {"blue": 147, "green": 162, "red": 199}}, {"percentage": 21.08, "rgb": {"blue": 63, "green": 71, "red": 89}}, {"percentage": 9.36, "rgb": {"blue": 44, "green": 86, "red": 124}}, {"percentage": 3.19, "rgb": {"blue": 121, "green": 117, "red": 183}}, {"percentage": 1.9, "rgb": {"blue": 113, "green": 161, "red": 200}}]}}}}, "profile_image_url_https": "https://pbs.twimg.com/profile_images/981733669617455104/lfVFo2Tj_normal.jpg", "profile_interstitial_type": "", "protected": false, "screen_name": "SiaIwu", "statuses_count": 15791, "translator_type": "none", "verified": false, "withheld_in_countries": []}, "super_follow_eligible": false, "super_followed_by": false, "super_following": false}}}, "legacy": {"created_at": "Mon Oct 11 06:12:21 +0000 2021", "conversation_id_str": "1447348840164564994", "display_text_range": [79, 157], "entities": {"user_mentions": [{"id_str": "1087289365544534016", "name": "Iga \u015awi\u0105tek", "screen_name": "iga_swiatek", "indices": [0, 12]}, {"id_str": "17158140", "name": "wta", "screen_name": "WTA", "indices": [13, 17]}, {"id_str": "1252575285293260800", "name": "Xiaomi Polska", "screen_name": "XiaomiPL", "indices": [18, 27]}, {"id_str": "603617274", "name": "Grupa PZU", "screen_name": "GrupaPZU", "indices": [28, 37]}, {"id_str": "3111250452", "name": "ASICS Tennis", "screen_name": "ASICSTennis", "indices": [38, 50]}, {"id_str": "30017071", "name": "BNP Paribas Open", "screen_name": "BNPPARIBASOPEN", "indices": [51, 66]}, {"id_str": "64391043", "name": "Tecnifibre", "screen_name": "tecnifibre", "indices": [67, 78]}], "urls": [], "hashtags": [], "symbols": []}, "favorite_count": 3, "favorited": false, "full_text": "@iga_swiatek @WTA @XiaomiPL @GrupaPZU @ASICSTennis @BNPPARIBASOPEN @tecnifibre You are not only a great tennis player but also a wonderful human being, Iga\u2763\ufe0f", "in_reply_to_screen_name": "iga_swiatek", "in_reply_to_status_id_str": "1447348840164564994", "in_reply_to_user_id_str": "1087289365544534016", "is_quote_status": false, "lang": "en", "quote_count": 0, "reply_count": 0, "retweet_count": 0, "retweeted": false, "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "user_id_str": "962129184209424386", "id_str": "1447444944633962498"}}}
is_cursor True last_scrapped_zero False
need_guest_token True
run request RequestDetails(http_method=<HttpMethod.GET: 1>, url='https://twitter.com/i/api/graphql/kUnCMgMYZCR8GyRZz76IQg/TweetDetail', headers={'Authorization': 'Bearer AAAAAAAAAAAAAAAAAAAAANRILgAAAAAAnNwIzUejRCOuH5E6I8xnZz4puTs%3D1Zv7ttfk8LF81IUq16cHjhLTvJu4FA33AGWWjCpTnA', 'x-guest-token': '1448607906950168577'}, params={'variables': '{"focalTweetId": "1447348840164564994", "with_rux_injections": true, "includePromotedContent": true, "withCommunity": true, "withTweetQuoteCount": true, "withBirdwatchNotes": true, "withSuperFollowsUserFields": true, "withUserResults": true, "withBirdwatchPivots": true, "withReactionsMetadata": true, "withReactionsPerspective": true, "withSuperFollowsTweetFields": true, "withVoice": true, "cursor": "9gIAAPAOHBn2U4SAuc2L-YKWKIKAvcmXuKiWKILAuJnE9akJANGjlcTVgpYohoCp9e-nJADgrN3LioeWKIbAvqnbroQSAPARssWD8YWWKJKAudmbuKCWKITAuM2s34OWKIDAvYWNmKoJAFC-gaSJmhsAULnxjZaDWgDxCL2Fvb-CliiIwL21y6qTliiEgLLtvoqFdQAx-Yj6PwDgo8Xi_6yWKI6ArNWuuYMtAFG5qYX1gqIA0Mn53qKWKIyAqu3e86wtAPAIsqGxiKiWKIzAubW-r4KWKI7Avcn-2Yt1AFCylbCNnRIAULjh2JqqvQDwB7nx1cyCliiKgLP16bqEliiAgLnVtuOQAFGAs8XbseoAULLpsqaCGwBBs9HBkRsAUbm52YiEJAAwsbH_2ADwAIC96eqQhZYokMCy4ZnVjIcAQbn9qcJRAFCz9dCto2wAUL2duvmSRAFQufW-sYTqAFC9zcPgrWMAULOdyvqpNgBRuM3g9amrAEGh5JiCSABA4fzmp6IAULn97sGC6gBQsrnZ_oUkAFGivavPg6IAQN2S4IVjAFGw1dKno5AAQM3S7oYFAVC-mfKWhD8AUKqx492WJABRuIXxqakkAEDlofGQhwBQuZX776xWAVCssfyAnHUAQbDhgP5fAUG-3fKVIAFBsvW_uRIAUbCpg6aT1AHQ6cjSopYoksC-2ciNn_wAUb7Z0eeoPwBB-aaYnp4BQfmf0qYJAEC1t_6SCQBRuYWxo4nzAEHZ3pqJTQFBoZ__iAoCQbm5haVSAjHVi8K5AVGy9ZyLmvwAMfnOnGQCULPB_qCiRAFQs6241Ku0AEC-tcHbmgJiwKiJyp6QpwEhsoEOAeG4neCOopYolMC9xZvTgnYC0KX7iZWWKCUCEhUOAAA"}'}, timeout=20)
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:48.697841+02:00", "raw_value": {"__typename": "Tweet", "rest_id": "1447447134123474946", "has_birdwatch_notes": false, "core": {"user_results": {"result": {"__typename": "User", "id": "VXNlcjoxMzI2NjU0NzQ5NDY3NDIyNzIz", "rest_id": "1326654749467422723", "affiliates_highlighted_label": {}, "legacy": {"created_at": "Wed Nov 11 22:35:30 +0000 2020", "default_profile": true, "default_profile_image": false, "description": "", "entities": {"description": {"urls": []}}, "fast_followers_count": 0, "favourites_count": 2197, "followers_count": 5, "friends_count": 221, "has_custom_timelines": false, "is_translator": false, "listed_count": 0, "location": "", "media_count": 1, "name": "Bart", "normal_followers_count": 5, "pinned_tweet_ids_str": [], "profile_image_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 52.23, "rgb": {"blue": 63, "green": 65, "red": 62}}, {"percentage": 21.27, "rgb": {"blue": 225, "green": 213, "red": 209}}, {"percentage": 18.0, "rgb": {"blue": 33, "green": 72, "red": 56}}, {"percentage": 1.65, "rgb": {"blue": 64, "green": 69, "red": 94}}, {"percentage": 1.03, "rgb": {"blue": 99, "green": 102, "red": 106}}]}}}}, "profile_image_url_https": "https://pbs.twimg.com/profile_images/1326655118494867456/02GFsDKM_normal.jpg", "profile_interstitial_type": "", "protected": false, "screen_name": "Bart38532105", "statuses_count": 74, "translator_type": "none", "verified": false, "withheld_in_countries": []}, "super_follow_eligible": false, "super_followed_by": false, "super_following": false}}}, "legacy": {"created_at": "Mon Oct 11 06:21:03 +0000 2021", "conversation_id_str": "1447348840164564994", "display_text_range": [79, 102], "entities": {"user_mentions": [{"id_str": "1087289365544534016", "name": "Iga \u015awi\u0105tek", "screen_name": "iga_swiatek", "indices": [0, 12]}, {"id_str": "17158140", "name": "wta", "screen_name": "WTA", "indices": [13, 17]}, {"id_str": "1252575285293260800", "name": "Xiaomi Polska", "screen_name": "XiaomiPL", "indices": [18, 27]}, {"id_str": "603617274", "name": "Grupa PZU", "screen_name": "GrupaPZU", "indices": [28, 37]}, {"id_str": "3111250452", "name": "ASICS Tennis", "screen_name": "ASICSTennis", "indices": [38, 50]}, {"id_str": "30017071", "name": "BNP Paribas Open", "screen_name": "BNPPARIBASOPEN", "indices": [51, 66]}, {"id_str": "64391043", "name": "Tecnifibre", "screen_name": "tecnifibre", "indices": [67, 78]}], "urls": [], "hashtags": [], "symbols": []}, "favorite_count": 1, "favorited": false, "full_text": "@iga_swiatek @WTA @XiaomiPL @GrupaPZU @ASICSTennis @BNPPARIBASOPEN @tecnifibre Szacunek!!!Brawo Iga\ud83d\udc4f\ud83d\udc4f\ud83d\udc4f", "in_reply_to_screen_name": "iga_swiatek", "in_reply_to_status_id_str": "1447348840164564994", "in_reply_to_user_id_str": "1087289365544534016", "is_quote_status": false, "lang": "pl", "quote_count": 0, "reply_count": 0, "retweet_count": 0, "retweeted": false, "source": "<a href=\"https://mobile.twitter.com\" rel=\"nofollow\">Twitter Web App</a>", "user_id_str": "1326654749467422723", "id_str": "1447447134123474946"}}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:48.698132+02:00", "raw_value": {"__typename": "Tweet", "rest_id": "1447447455587520516", "has_birdwatch_notes": false, "core": {"user_results": {"result": {"__typename": "User", "id": "VXNlcjoyNDE2NDY5MzAz", "rest_id": "2416469303", "affiliates_highlighted_label": {}, "legacy": {"created_at": "Mon Mar 17 00:52:04 +0000 2014", "default_profile": true, "default_profile_image": false, "description": "... zdecydowanie gorszy sort, muza i pi\u0119kno w ka\u017cdej postaci\ud83d\ude09Ateista.\nCzasem pisze tu moja \u017cona(pedagog). \nJest wporzo...\ud83e\udd2a", "entities": {"description": {"urls": []}}, "fast_followers_count": 0, "favourites_count": 168774, "followers_count": 816, "friends_count": 1112, "has_custom_timelines": true, "is_translator": false, "listed_count": 1, "location": "Mazowieckie, Polska", "media_count": 168, "name": "\u26a1piotr\u26a1 \ud83d\udde3\ufe0f ***** ***", "normal_followers_count": 816, "pinned_tweet_ids_str": [], "profile_banner_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 51.05, "rgb": {"blue": 45, "green": 102, "red": 51}}, {"percentage": 34.28, "rgb": {"blue": 130, "green": 155, "red": 168}}, {"percentage": 4.03, "rgb": {"blue": 51, "green": 113, "red": 202}}, {"percentage": 3.52, "rgb": {"blue": 206, "green": 202, "red": 188}}, {"percentage": 1.6, "rgb": {"blue": 46, "green": 65, "red": 51}}]}}}}, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2416469303/1597568691", "profile_image_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 52.84, "rgb": {"blue": 64, "green": 48, "red": 35}}, {"percentage": 26.72, "rgb": {"blue": 232, "green": 249, "red": 248}}, {"percentage": 16.42, "rgb": {"blue": 99, "green": 106, "red": 118}}, {"percentage": 3.23, "rgb": {"blue": 111, "green": 112, "red": 107}}, {"percentage": 0.34, "rgb": {"blue": 157, "green": 191, "red": 215}}]}}}}, "profile_image_url_https": "https://pbs.twimg.com/profile_images/873950518921613312/fHurwrXX_normal.jpg", "profile_interstitial_type": "", "protected": false, "screen_name": "piopac6", "statuses_count": 17735, "translator_type": "none", "verified": false, "withheld_in_countries": []}, "super_follow_eligible": false, "super_followed_by": false, "super_following": false}}}, "legacy": {"created_at": "Mon Oct 11 06:22:20 +0000 2021", "conversation_id_str": "1447348840164564994", "display_text_range": [95, 100], "entities": {"user_mentions": [{"id_str": "1087289365544534016", "name": "Iga \u015awi\u0105tek", "screen_name": "iga_swiatek", "indices": [0, 12]}, {"id_str": "2549508198", "name": "FanTomas Szary", "screen_name": "T_Stanislawski", "indices": [13, 28]}, {"id_str": "17158140", "name": "wta", "screen_name": "WTA", "indices": [29, 33]}, {"id_str": "1252575285293260800", "name": "Xiaomi Polska", "screen_name": "XiaomiPL", "indices": [34, 43]}, {"id_str": "603617274", "name": "Grupa PZU", "screen_name": "GrupaPZU", "indices": [44, 53]}, {"id_str": "3111250452", "name": "ASICS Tennis", "screen_name": "ASICSTennis", "indices": [54, 66]}, {"id_str": "30017071", "name": "BNP Paribas Open", "screen_name": "BNPPARIBASOPEN", "indices": [67, 82]}, {"id_str": "64391043", "name": "Tecnifibre", "screen_name": "tecnifibre", "indices": [83, 94]}], "urls": [], "hashtags": [], "symbols": []}, "favorite_count": 0, "favorited": false, "full_text": "@iga_swiatek @T_Stanislawski @WTA @XiaomiPL @GrupaPZU @ASICSTennis @BNPPARIBASOPEN @tecnifibre \ud83d\udc4c\ud83d\udc4f\ud83d\udc4f\ud83d\udc4f\ud83d\udcaa", "in_reply_to_screen_name": "iga_swiatek", "in_reply_to_status_id_str": "1447348840164564994", "in_reply_to_user_id_str": "1087289365544534016", "is_quote_status": false, "lang": "und", "quote_count": 0, "reply_count": 0, "retweet_count": 0, "retweeted": false, "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "user_id_str": "2416469303", "id_str": "1447447455587520516"}}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:48.698367+02:00", "raw_value": {"__typename": "Tweet", "rest_id": "1447447539473604609", "has_birdwatch_notes": false, "core": {"user_results": {"result": {"__typename": "User", "id": "VXNlcjo4NzQxNjc1NTE1NTA1MzM2MzI=", "rest_id": "874167551550533632", "affiliates_highlighted_label": {}, "legacy": {"created_at": "Mon Jun 12 07:32:40 +0000 2017", "default_profile": true, "default_profile_image": false, "description": "Live Laugh Love \n\nI'm here for @mancity @naomiosaka @djokernole  \u2b50\u2b50\u2b50\n\n\n https://t.co/oyVPccn21T", "entities": {"description": {"urls": [{"display_url": "instagram.com/n_alex99", "expanded_url": "http://instagram.com/n_alex99", "url": "https://t.co/oyVPccn21T", "indices": [72, 95]}]}}, "fast_followers_count": 0, "favourites_count": 62004, "followers_count": 165, "friends_count": 158, "has_custom_timelines": false, "is_translator": false, "listed_count": 0, "location": "K.Road", "media_count": 111, "name": "Alex", "normal_followers_count": 165, "pinned_tweet_ids_str": [], "profile_banner_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 62.86, "rgb": {"blue": 16, "green": 11, "red": 8}}, {"percentage": 11.54, "rgb": {"blue": 196, "green": 202, "red": 203}}, {"percentage": 4.65, "rgb": {"blue": 71, "green": 87, "red": 139}}, {"percentage": 4.18, "rgb": {"blue": 65, "green": 47, "red": 18}}, {"percentage": 2.0, "rgb": {"blue": 201, "green": 148, "red": 46}}]}}}}, "profile_banner_url": "https://pbs.twimg.com/profile_banners/874167551550533632/1621669100", "profile_image_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 34.8, "rgb": {"blue": 0, "green": 0, "red": 0}}, {"percentage": 24.47, "rgb": {"blue": 116, "green": 119, "red": 125}}, {"percentage": 17.35, "rgb": {"blue": 99, "green": 150, "red": 203}}, {"percentage": 15.67, "rgb": {"blue": 106, "green": 62, "red": 29}}, {"percentage": 3.79, "rgb": {"blue": 51, "green": 56, "red": 74}}]}}}}, "profile_image_url_https": "https://pbs.twimg.com/profile_images/1423747206838882309/ZoIg2VAo_normal.jpg", "profile_interstitial_type": "", "protected": false, "screen_name": "n_alex99", "statuses_count": 8597, "translator_type": "none", "verified": false, "withheld_in_countries": []}, "super_follow_eligible": false, "super_followed_by": false, "super_following": false}}}, "legacy": {"created_at": "Mon Oct 11 06:22:40 +0000 2021", "conversation_id_str": "1447348840164564994", "display_text_range": [79, 102], "entities": {"user_mentions": [{"id_str": "1087289365544534016", "name": "Iga \u015awi\u0105tek", "screen_name": "iga_swiatek", "indices": [0, 12]}, {"id_str": "17158140", "name": "wta", "screen_name": "WTA", "indices": [13, 17]}, {"id_str": "1252575285293260800", "name": "Xiaomi Polska", "screen_name": "XiaomiPL", "indices": [18, 27]}, {"id_str": "603617274", "name": "Grupa PZU", "screen_name": "GrupaPZU", "indices": [28, 37]}, {"id_str": "3111250452", "name": "ASICS Tennis", "screen_name": "ASICSTennis", "indices": [38, 50]}, {"id_str": "30017071", "name": "BNP Paribas Open", "screen_name": "BNPPARIBASOPEN", "indices": [51, 66]}, {"id_str": "64391043", "name": "Tecnifibre", "screen_name": "tecnifibre", "indices": [67, 78]}], "urls": [], "hashtags": [], "symbols": []}, "favorite_count": 1, "favorited": false, "full_text": "@iga_swiatek @WTA @XiaomiPL @GrupaPZU @ASICSTennis @BNPPARIBASOPEN @tecnifibre You are amazing Iga\ud83d\ude4c\ud83c\udffd\u2764\ufe0f", "in_reply_to_screen_name": "iga_swiatek", "in_reply_to_status_id_str": "1447348840164564994", "in_reply_to_user_id_str": "1087289365544534016", "is_quote_status": false, "lang": "en", "quote_count": 0, "reply_count": 0, "retweet_count": 0, "retweeted": false, "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "user_id_str": "874167551550533632", "id_str": "1447447539473604609"}}}
is_cursor True last_scrapped_zero False
need_guest_token True
run request RequestDetails(http_method=<HttpMethod.GET: 1>, url='https://twitter.com/i/api/graphql/kUnCMgMYZCR8GyRZz76IQg/TweetDetail', headers={'Authorization': 'Bearer AAAAAAAAAAAAAAAAAAAAANRILgAAAAAAnNwIzUejRCOuH5E6I8xnZz4puTs%3D1Zv7ttfk8LF81IUq16cHjhLTvJu4FA33AGWWjCpTnA', 'x-guest-token': '1448607906950168577'}, params={'variables': '{"focalTweetId": "1447348840164564994", "with_rux_injections": true, "includePromotedContent": true, "withCommunity": true, "withTweetQuoteCount": true, "withBirdwatchNotes": true, "withSuperFollowsUserFields": true, "withUserResults": true, "withBirdwatchPivots": true, "withReactionsMetadata": true, "withReactionsPerspective": true, "withSuperFollowsTweetFields": true, "withVoice": true, "cursor": "EQMAAPAOHBn2VoSAuc2L-YKWKIKAvcmXuKiWKILAuJnE9akJANGjlcTVgpYohoCp9e-nJADgrN3LioeWKIbAvqnbroQSAPARssWD8YWWKJKAudmbuKCWKITAuM2s34OWKIDAvYWNmKoJAFC-gaSJmhsAULnxjZaDWgDxCL2Fvb-CliiIwL21y6qTliiEgLLtvoqFdQAx-Yj6PwDgo8Xi_6yWKI6ArNWuuYMtAFG5qYX1gqIA0Mn53qKWKIyAqu3e86wtAPAIsqGxiKiWKIzAubW-r4KWKI7Avcn-2Yt1AFCylbCNnRIAULjh2JqqvQDwB7nx1cyCliiKgLP16bqEliiAgLnVtuOQAGGAs8XbsYKQAEHJ_N-u4QBA6bKmgiQAQbPRwZEkAFG5udmIhC0AMLGx_-EA8ACAvenqkIWWKJDAsuGZ1YyQAEG5_anCWgBQs_XQraN1AFC9nbr5kk0BULn1vrGEYwBQvc3D4K1jAFCzncr6qTYAUbjN4PWptABBoeSYgkgAQOH85qerAFC5_e7BgvMAULK52f6FJABRor2rz4OiAEDdkuCFYwBRsNXSp6OQAEDN0u6GDgFQvpnyloQ_AFCqsePdliQAUbiF8ampJABA5aHxkIcAULmV---sXwFQrLH8gJx1AEGw4YD-aAFBvt3ylSkBQbL1v7mwAUCy1dfyFwFhwLCpg6aT5gHQ6cjSopYoksC-2ciNnwUBUb7Z0eeoSABB-aaYnrABQfmf0qYJAEC1t_6SCQBRuYWxo4n8AEHZ3pqJVgFBoZ__iBwCQbm5haVkAjHVi8LLAVGy9ZyLmgUBMfnOnHYCULPB_qCiTQFQs6241KuZAEC-tcHbrAJhwKiJyp6QJABC1cj3rrkBIbKBIAHhuJ3gjqKWKJTAvcWb04KRAtCl-4mVliglAhIVDgAA"}'}, timeout=20)
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:49.159139+02:00", "raw_value": {"__typename": "Tweet", "rest_id": "1447446574083235845", "has_birdwatch_notes": false, "core": {"user_results": {"result": {"__typename": "User", "id": "VXNlcjoxMDY2NDYzNDU2", "rest_id": "1066463456", "affiliates_highlighted_label": {}, "legacy": {"created_at": "Sun Jan 06 19:13:46 +0000 2013", "default_profile": false, "default_profile_image": false, "description": "I'm The DAO investor. I support decentralization. Born on Jomsborg island. I studied applied math.", "entities": {"description": {"urls": []}}, "fast_followers_count": 0, "favourites_count": 35762, "followers_count": 1073, "friends_count": 3743, "has_custom_timelines": true, "is_translator": false, "listed_count": 0, "location": "jomsborg.eth", "media_count": 684, "name": "Jacek (Jomsborg.eth)", "normal_followers_count": 1073, "pinned_tweet_ids_str": ["963107494301196288"], "profile_banner_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 98.11, "rgb": {"blue": 194, "green": 126, "red": 66}}, {"percentage": 1.02, "rgb": {"blue": 72, "green": 153, "red": 189}}, {"percentage": 0.27, "rgb": {"blue": 63, "green": 109, "red": 140}}, {"percentage": 0.22, "rgb": {"blue": 137, "green": 128, "red": 119}}, {"percentage": 0.18, "rgb": {"blue": 171, "green": 211, "red": 205}}]}}}}, "profile_banner_url": "https://pbs.twimg.com/profile_banners/1066463456/1597536336", "profile_image_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 46.69, "rgb": {"blue": 64, "green": 75, "red": 83}}, {"percentage": 44.17, "rgb": {"blue": 135, "green": 144, "red": 172}}, {"percentage": 4.79, "rgb": {"blue": 102, "green": 111, "red": 174}}, {"percentage": 3.54, "rgb": {"blue": 88, "green": 94, "red": 143}}, {"percentage": 1.33, "rgb": {"blue": 140, "green": 165, "red": 170}}]}}}}, "profile_image_url_https": "https://pbs.twimg.com/profile_images/1389496948714090500/nR6OpLjZ_normal.jpg", "profile_interstitial_type": "", "protected": false, "screen_name": "timelessdev", "statuses_count": 22819, "translator_type": "none", "verified": false, "withheld_in_countries": []}, "super_follow_eligible": false, "super_followed_by": false, "super_following": false}}}, "legacy": {"created_at": "Mon Oct 11 06:18:50 +0000 2021", "conversation_id_str": "1447348840164564994", "display_text_range": [79, 89], "entities": {"user_mentions": [{"id_str": "1087289365544534016", "name": "Iga \u015awi\u0105tek", "screen_name": "iga_swiatek", "indices": [0, 12]}, {"id_str": "17158140", "name": "wta", "screen_name": "WTA", "indices": [13, 17]}, {"id_str": "1252575285293260800", "name": "Xiaomi Polska", "screen_name": "XiaomiPL", "indices": [18, 27]}, {"id_str": "603617274", "name": "Grupa PZU", "screen_name": "GrupaPZU", "indices": [28, 37]}, {"id_str": "3111250452", "name": "ASICS Tennis", "screen_name": "ASICSTennis", "indices": [38, 50]}, {"id_str": "30017071", "name": "BNP Paribas Open", "screen_name": "BNPPARIBASOPEN", "indices": [51, 66]}, {"id_str": "64391043", "name": "Tecnifibre", "screen_name": "tecnifibre", "indices": [67, 78]}], "urls": [], "hashtags": [], "symbols": []}, "favorite_count": 0, "favorited": false, "full_text": "@iga_swiatek @WTA @XiaomiPL @GrupaPZU @ASICSTennis @BNPPARIBASOPEN @tecnifibre Remarkable", "in_reply_to_screen_name": "iga_swiatek", "in_reply_to_status_id_str": "1447348840164564994", "in_reply_to_user_id_str": "1087289365544534016", "is_quote_status": false, "lang": "en", "quote_count": 0, "reply_count": 0, "retweet_count": 0, "retweeted": false, "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "user_id_str": "1066463456", "id_str": "1447446574083235845"}}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:49.159414+02:00", "raw_value": {"__typename": "Tweet", "rest_id": "1447448256766693376", "has_birdwatch_notes": false, "core": {"user_results": {"result": {"__typename": "User", "id": "VXNlcjoxMjY4OTExNzgzMTM1Mzc5NDU2", "rest_id": "1268911783135379456", "affiliates_highlighted_label": {}, "legacy": {"created_at": "Fri Jun 05 14:25:40 +0000 2020", "default_profile": true, "default_profile_image": false, "description": "Cynophilist", "entities": {"description": {"urls": []}}, "fast_followers_count": 0, "favourites_count": 2351, "followers_count": 8, "friends_count": 11, "has_custom_timelines": false, "is_translator": false, "listed_count": 0, "location": "Edinburgh, Scotland", "media_count": 4, "name": "Graeme Paterson", "normal_followers_count": 8, "pinned_tweet_ids_str": [], "profile_image_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 37.93, "rgb": {"blue": 231, "green": 231, "red": 218}}, {"percentage": 28.14, "rgb": {"blue": 92, "green": 61, "red": 18}}, {"percentage": 15.33, "rgb": {"blue": 107, "green": 109, "red": 136}}, {"percentage": 7.42, "rgb": {"blue": 168, "green": 114, "red": 42}}, {"percentage": 1.14, "rgb": {"blue": 210, "green": 206, "red": 175}}]}}}}, "profile_image_url_https": "https://pbs.twimg.com/profile_images/1427035053746425857/E2MZs2q0_normal.jpg", "profile_interstitial_type": "", "protected": false, "screen_name": "gspatero", "statuses_count": 609, "translator_type": "none", "verified": false, "withheld_in_countries": []}, "super_follow_eligible": false, "super_followed_by": false, "super_following": false}}}, "legacy": {"created_at": "Mon Oct 11 06:25:31 +0000 2021", "conversation_id_str": "1447348840164564994", "display_text_range": [79, 292], "entities": {"user_mentions": [{"id_str": "1087289365544534016", "name": "Iga \u015awi\u0105tek", "screen_name": "iga_swiatek", "indices": [0, 12]}, {"id_str": "17158140", "name": "wta", "screen_name": "WTA", "indices": [13, 17]}, {"id_str": "1252575285293260800", "name": "Xiaomi Polska", "screen_name": "XiaomiPL", "indices": [18, 27]}, {"id_str": "603617274", "name": "Grupa PZU", "screen_name": "GrupaPZU", "indices": [28, 37]}, {"id_str": "3111250452", "name": "ASICS Tennis", "screen_name": "ASICSTennis", "indices": [38, 50]}, {"id_str": "30017071", "name": "BNP Paribas Open", "screen_name": "BNPPARIBASOPEN", "indices": [51, 66]}, {"id_str": "64391043", "name": "Tecnifibre", "screen_name": "tecnifibre", "indices": [67, 78]}], "urls": [], "hashtags": [], "symbols": []}, "favorite_count": 4, "favorited": false, "full_text": "@iga_swiatek @WTA @XiaomiPL @GrupaPZU @ASICSTennis @BNPPARIBASOPEN @tecnifibre What a great post. Sports stars are leading the way in so many directions now none more so than here in Britain ( Rashford etc).\nKeep up your great work Iga and all the best with everything you do in the future \u263a\ufe0f", "in_reply_to_screen_name": "iga_swiatek", "in_reply_to_status_id_str": "1447348840164564994", "in_reply_to_user_id_str": "1087289365544534016", "is_quote_status": false, "lang": "en", "quote_count": 0, "reply_count": 0, "retweet_count": 0, "retweeted": false, "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "user_id_str": "1268911783135379456", "id_str": "1447448256766693376"}}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:49.159624+02:00", "raw_value": {"__typename": "Tweet", "rest_id": "1447449576105984008", "has_birdwatch_notes": false, "core": {"user_results": {"result": {"__typename": "User", "id": "VXNlcjo0OTA4NTc1NzQ=", "rest_id": "490857574", "affiliates_highlighted_label": {}, "legacy": {"created_at": "Mon Feb 13 00:12:53 +0000 2012", "default_profile": false, "default_profile_image": false, "description": "I work so I can travel,tea is my go to drink and I still search for life's meaning. #FMS \u015al\u0105skie. She/her", "entities": {"description": {"urls": []}}, "fast_followers_count": 0, "favourites_count": 55836, "followers_count": 183, "friends_count": 254, "has_custom_timelines": true, "is_translator": false, "listed_count": 1, "location": "Bytom,Polska", "media_count": 717, "name": "Ania Zosia \u26a1\ud83c\udf08\ud83d\udc9b\ud83d\udc99", "normal_followers_count": 183, "pinned_tweet_ids_str": [], "profile_banner_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 21.37, "rgb": {"blue": 36, "green": 88, "red": 242}}, {"percentage": 16.08, "rgb": {"blue": 69, "green": 175, "red": 238}}, {"percentage": 15.95, "rgb": {"blue": 1, "green": 1, "red": 1}}, {"percentage": 13.59, "rgb": {"blue": 135, "green": 104, "red": 237}}, {"percentage": 6.2, "rgb": {"blue": 203, "green": 224, "red": 239}}]}}}}, "profile_banner_url": "https://pbs.twimg.com/profile_banners/490857574/1595369442", "profile_image_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 37.33, "rgb": {"blue": 157, "green": 163, "red": 198}}, {"percentage": 20.19, "rgb": {"blue": 94, "green": 103, "red": 109}}, {"percentage": 14.82, "rgb": {"blue": 126, "green": 171, "red": 167}}, {"percentage": 7.81, "rgb": {"blue": 98, "green": 103, "red": 148}}, {"percentage": 5.25, "rgb": {"blue": 165, "green": 150, "red": 147}}]}}}}, "profile_image_url_https": "https://pbs.twimg.com/profile_images/1444578972830998530/QHUGdf5M_normal.jpg", "profile_interstitial_type": "", "protected": false, "screen_name": "Anna_Niezgodzka", "statuses_count": 11691, "translator_type": "none", "verified": false, "withheld_in_countries": []}, "super_follow_eligible": false, "super_followed_by": false, "super_following": false}}}, "legacy": {"created_at": "Mon Oct 11 06:30:45 +0000 2021", "conversation_id_str": "1447348840164564994", "display_text_range": [79, 89], "entities": {"user_mentions": [{"id_str": "1087289365544534016", "name": "Iga \u015awi\u0105tek", "screen_name": "iga_swiatek", "indices": [0, 12]}, {"id_str": "17158140", "name": "wta", "screen_name": "WTA", "indices": [13, 17]}, {"id_str": "1252575285293260800", "name": "Xiaomi Polska", "screen_name": "XiaomiPL", "indices": [18, 27]}, {"id_str": "603617274", "name": "Grupa PZU", "screen_name": "GrupaPZU", "indices": [28, 37]}, {"id_str": "3111250452", "name": "ASICS Tennis", "screen_name": "ASICSTennis", "indices": [38, 50]}, {"id_str": "30017071", "name": "BNP Paribas Open", "screen_name": "BNPPARIBASOPEN", "indices": [51, 66]}, {"id_str": "64391043", "name": "Tecnifibre", "screen_name": "tecnifibre", "indices": [67, 78]}], "urls": [], "hashtags": [], "symbols": []}, "favorite_count": 0, "favorited": false, "full_text": "@iga_swiatek @WTA @XiaomiPL @GrupaPZU @ASICSTennis @BNPPARIBASOPEN @tecnifibre Brawo Iga!", "in_reply_to_screen_name": "iga_swiatek", "in_reply_to_status_id_str": "1447348840164564994", "in_reply_to_user_id_str": "1087289365544534016", "is_quote_status": false, "lang": "pl", "quote_count": 0, "reply_count": 0, "retweet_count": 0, "retweeted": false, "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "user_id_str": "490857574", "id_str": "1447449576105984008"}}}
is_cursor True last_scrapped_zero False
need_guest_token True
run request RequestDetails(http_method=<HttpMethod.GET: 1>, url='https://twitter.com/i/api/graphql/kUnCMgMYZCR8GyRZz76IQg/TweetDetail', headers={'Authorization': 'Bearer AAAAAAAAAAAAAAAAAAAAANRILgAAAAAAnNwIzUejRCOuH5E6I8xnZz4puTs%3D1Zv7ttfk8LF81IUq16cHjhLTvJu4FA33AGWWjCpTnA', 'x-guest-token': '1448607906950168577'}, params={'variables': '{"focalTweetId": "1447348840164564994", "with_rux_injections": true, "includePromotedContent": true, "withCommunity": true, "withTweetQuoteCount": true, "withBirdwatchNotes": true, "withSuperFollowsUserFields": true, "withUserResults": true, "withBirdwatchPivots": true, "withReactionsMetadata": true, "withReactionsPerspective": true, "withSuperFollowsTweetFields": true, "withVoice": true, "cursor": "LAMAAPAOHBn2WYSAuc2L-YKWKIKAvcmXuKiWKILAuJnE9akJANGjlcTVgpYohoCp9e-nJADgrN3LioeWKIbAvqnbroQSAPARssWD8YWWKJKAudmbuKCWKITAuM2s34OWKIDAvYWNmKoJAFC-gaSJmhsAULnxjZaDWgDxCL2Fvb-CliiIwL21y6qTliiEgLLtvoqFdQAx-Yj6PwDgo8Xi_6yWKI6ArNWuuYMtAFG5qYX1gqIA0Mn53qKWKIyAqu3e86wtAPAIsqGxiKiWKIzAubW-r4KWKI7Avcn-2Yt1AFCylbCNnRIAULjh2JqqvQDwB7nx1cyCliiKgLP16bqEliiAgLnVtuOQAGGAs8XbsYKQAEHJ_N-u4QBA6bKmgiQAQbPRwZEkAFG5udmIhC0AMLGx_-EA8ACAvenqkIWWKJDAsuGZ1YyQAEG5_anCWgDgs_XQraOWKJCAsuGO7q9-AFC9nbr5klYBULn1vrGEbABQvc3D4K1sAFCzncr6qT8AUbjN4PWpvQBBoeSYglEAQOH85qe0AFC5_e7BgvwAULK52f6FJABRor2rz4OrAEDdkuCFYwBRsNXSp6OZAEDN0u6GFwFQvpnyloQ_AFCqsePdliQAUbiF8ampJABA5aHxkIcAULmV---saAFQrLH8gJx1AEKw4YD-KQEw-a-_DgFRwL7d8pUSAEGy9b-5wgFBstXX8hsAUbCpg6aT-AHQ6cjSopYoksC-2ciNnxcBUb7Z0eeoUQBB-aaYnsIBQfmf0qYJAEG1t_6SwgFA9aihrxIAUbmFsaOJDgFB2d6aiXEBQaGf_4g3AkG5uYWlfwIx1YvC5gFRsvWci5oXATH5zpyRAlCzwf6gol8BULOtuNSrogBAvrXB28cCYcCoicqekCQAQtXI967UASGygTIB4bid4I6iliiUwL3Fm9OCrALQpfuJlZYoJQISFQ4AAA"}'}, timeout=20)
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:49.665929+02:00", "raw_value": {"__typename": "Tweet", "rest_id": "1447450461963882500", "has_birdwatch_notes": false, "core": {"user_results": {"result": {"__typename": "User", "id": "VXNlcjoyMjI2NjAwMzA4", "rest_id": "2226600308", "affiliates_highlighted_label": {}, "legacy": {"created_at": "Mon Dec 02 12:40:10 +0000 2013", "default_profile": true, "default_profile_image": false, "description": "\ud83c\uddef\ud83c\uddf5I\u2019m in love with tennis \ud83c\udfbeMy favorite player is Iga Swiatek", "entities": {"description": {"urls": []}}, "fast_followers_count": 0, "favourites_count": 1296, "followers_count": 44, "friends_count": 41, "has_custom_timelines": true, "is_translator": false, "listed_count": 0, "location": "", "media_count": 15, "name": "Tomo", "normal_followers_count": 44, "pinned_tweet_ids_str": [], "profile_banner_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 36.28, "rgb": {"blue": 116, "green": 78, "red": 50}}, {"percentage": 34.87, "rgb": {"blue": 125, "green": 141, "red": 118}}, {"percentage": 17.61, "rgb": {"blue": 146, "green": 115, "red": 93}}, {"percentage": 3.05, "rgb": {"blue": 124, "green": 161, "red": 154}}, {"percentage": 1.98, "rgb": {"blue": 207, "green": 200, "red": 201}}]}}}}, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2226600308/1626617883", "profile_image_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 32.39, "rgb": {"blue": 54, "green": 68, "red": 67}}, {"percentage": 17.29, "rgb": {"blue": 105, "green": 190, "red": 175}}, {"percentage": 15.2, "rgb": {"blue": 83, "green": 101, "red": 119}}, {"percentage": 14.36, "rgb": {"blue": 200, "green": 127, "red": 114}}, {"percentage": 7.56, "rgb": {"blue": 180, "green": 153, "red": 161}}]}}}}, "profile_image_url_https": "https://pbs.twimg.com/profile_images/1416394498247061518/YKh0XuUX_normal.jpg", "profile_interstitial_type": "", "protected": false, "screen_name": "tomotomo282001", "statuses_count": 622, "translator_type": "none", "verified": false, "withheld_in_countries": []}, "super_follow_eligible": false, "super_followed_by": false, "super_following": false}}}, "legacy": {"created_at": "Mon Oct 11 06:34:17 +0000 2021", "conversation_id_str": "1447348840164564994", "display_text_range": [79, 108], "entities": {"user_mentions": [{"id_str": "1087289365544534016", "name": "Iga \u015awi\u0105tek", "screen_name": "iga_swiatek", "indices": [0, 12]}, {"id_str": "17158140", "name": "wta", "screen_name": "WTA", "indices": [13, 17]}, {"id_str": "1252575285293260800", "name": "Xiaomi Polska", "screen_name": "XiaomiPL", "indices": [18, 27]}, {"id_str": "603617274", "name": "Grupa PZU", "screen_name": "GrupaPZU", "indices": [28, 37]}, {"id_str": "3111250452", "name": "ASICS Tennis", "screen_name": "ASICSTennis", "indices": [38, 50]}, {"id_str": "30017071", "name": "BNP Paribas Open", "screen_name": "BNPPARIBASOPEN", "indices": [51, 66]}, {"id_str": "64391043", "name": "Tecnifibre", "screen_name": "tecnifibre", "indices": [67, 78]}], "urls": [], "hashtags": [], "symbols": []}, "favorite_count": 8, "favorited": false, "full_text": "@iga_swiatek @WTA @XiaomiPL @GrupaPZU @ASICSTennis @BNPPARIBASOPEN @tecnifibre You are so beautiful person .", "in_reply_to_screen_name": "iga_swiatek", "in_reply_to_status_id_str": "1447348840164564994", "in_reply_to_user_id_str": "1087289365544534016", "is_quote_status": false, "lang": "en", "quote_count": 0, "reply_count": 0, "retweet_count": 0, "retweeted": false, "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "user_id_str": "2226600308", "id_str": "1447450461963882500"}}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:49.666323+02:00", "raw_value": {"__typename": "Tweet", "rest_id": "1447451704430141448", "has_birdwatch_notes": false, "core": {"user_results": {"result": {"__typename": "User", "id": "VXNlcjo4MjY4MjI1MTA2NzUxNjUxODU=", "rest_id": "826822510675165185", "affiliates_highlighted_label": {}, "legacy": {"created_at": "Wed Feb 01 16:00:22 +0000 2017", "default_profile": true, "default_profile_image": false, "description": "patrz\u0119, widz\u0119, nie rozumiem, cho\u0107 si\u0119 staram.", "entities": {"description": {"urls": []}}, "fast_followers_count": 0, "favourites_count": 3986, "followers_count": 67, "friends_count": 274, "has_custom_timelines": true, "is_translator": false, "listed_count": 0, "location": "Radzy\u0144 Podlaski, Polska", "media_count": 163, "name": "Rados\u0142aw Grudzie\u0144", "normal_followers_count": 67, "pinned_tweet_ids_str": [], "profile_banner_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 47.0, "rgb": {"blue": 46, "green": 46, "red": 45}}, {"percentage": 29.14, "rgb": {"blue": 207, "green": 187, "red": 176}}, {"percentage": 7.54, "rgb": {"blue": 114, "green": 131, "red": 181}}, {"percentage": 3.4, "rgb": {"blue": 85, "green": 63, "red": 46}}, {"percentage": 1.0, "rgb": {"blue": 71, "green": 77, "red": 113}}]}}}}, "profile_banner_url": "https://pbs.twimg.com/profile_banners/826822510675165185/1521665716", "profile_image_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 67.41, "rgb": {"blue": 43, "green": 33, "red": 29}}, {"percentage": 13.32, "rgb": {"blue": 197, "green": 187, "red": 195}}, {"percentage": 7.7, "rgb": {"blue": 167, "green": 137, "red": 121}}, {"percentage": 2.98, "rgb": {"blue": 97, "green": 64, "red": 57}}, {"percentage": 1.93, "rgb": {"blue": 135, "green": 131, "red": 167}}]}}}}, "profile_image_url_https": "https://pbs.twimg.com/profile_images/828247094792163329/ZKp2P0Ov_normal.jpg", "profile_interstitial_type": "", "protected": false, "screen_name": "radek_gru", "statuses_count": 5160, "translator_type": "none", "verified": false, "withheld_in_countries": []}, "super_follow_eligible": false, "super_followed_by": false, "super_following": false}}}, "legacy": {"created_at": "Mon Oct 11 06:39:13 +0000 2021", "conversation_id_str": "1447348840164564994", "display_text_range": [79, 100], "entities": {"user_mentions": [{"id_str": "1087289365544534016", "name": "Iga \u015awi\u0105tek", "screen_name": "iga_swiatek", "indices": [0, 12]}, {"id_str": "17158140", "name": "wta", "screen_name": "WTA", "indices": [13, 17]}, {"id_str": "1252575285293260800", "name": "Xiaomi Polska", "screen_name": "XiaomiPL", "indices": [18, 27]}, {"id_str": "603617274", "name": "Grupa PZU", "screen_name": "GrupaPZU", "indices": [28, 37]}, {"id_str": "3111250452", "name": "ASICS Tennis", "screen_name": "ASICSTennis", "indices": [38, 50]}, {"id_str": "30017071", "name": "BNP Paribas Open", "screen_name": "BNPPARIBASOPEN", "indices": [51, 66]}, {"id_str": "64391043", "name": "Tecnifibre", "screen_name": "tecnifibre", "indices": [67, 78]}], "urls": [], "hashtags": [], "symbols": []}, "favorite_count": 2, "favorited": false, "full_text": "@iga_swiatek @WTA @XiaomiPL @GrupaPZU @ASICSTennis @BNPPARIBASOPEN @tecnifibre \u015awi\u0105tk\u00f3wna, brawo TY!", "in_reply_to_screen_name": "iga_swiatek", "in_reply_to_status_id_str": "1447348840164564994", "in_reply_to_user_id_str": "1087289365544534016", "is_quote_status": false, "lang": "pl", "quote_count": 0, "reply_count": 0, "retweet_count": 0, "retweeted": false, "source": "<a href=\"https://mobile.twitter.com\" rel=\"nofollow\">Twitter Web App</a>", "user_id_str": "826822510675165185", "id_str": "1447451704430141448"}}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:49.666651+02:00", "raw_value": {"__typename": "Tweet", "rest_id": "1447452694512287750", "has_birdwatch_notes": false, "core": {"user_results": {"result": {"__typename": "User", "id": "VXNlcjoyODI0NDY1NDU1", "rest_id": "2824465455", "affiliates_highlighted_label": {}, "legacy": {"created_at": "Sun Oct 12 06:33:08 +0000 2014", "default_profile": false, "default_profile_image": false, "description": "Pracownik w Ruch Chrze\u015bcija\u0144ski Mt28, pastor Ko\u015bcio\u0142a Chrze\u015bcijan Baptyst\u00f3w w Rabce, dziekan Szko\u0142y Misyjnej, wyk\u0142ada w Krakowskim Seminarium Biblijnym", "entities": {"description": {"urls": []}, "url": {"urls": [{"display_url": "szkola-misyjna.org", "expanded_url": "http://www.szkola-misyjna.org", "url": "https://t.co/Q1yt8BbvJF", "indices": [0, 23]}]}}, "fast_followers_count": 0, "favourites_count": 105, "followers_count": 32, "friends_count": 34, "has_custom_timelines": false, "is_translator": false, "listed_count": 1, "location": "Rabka-Zdr\u00f3j, Polska", "media_count": 73, "name": "Robert Boryczka", "normal_followers_count": 32, "pinned_tweet_ids_str": [], "profile_banner_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 94.97, "rgb": {"blue": 186, "green": 185, "red": 175}}, {"percentage": 5.0, "rgb": {"blue": 92, "green": 101, "red": 98}}]}}}}, "profile_banner_url": "https://pbs.twimg.com/profile_banners/2824465455/1598087640", "profile_image_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 50.85, "rgb": {"blue": 21, "green": 35, "red": 106}}, {"percentage": 14.87, "rgb": {"blue": 98, "green": 140, "red": 205}}, {"percentage": 12.11, "rgb": {"blue": 69, "green": 59, "red": 44}}, {"percentage": 9.22, "rgb": {"blue": 134, "green": 114, "red": 83}}, {"percentage": 5.77, "rgb": {"blue": 168, "green": 174, "red": 170}}]}}}}, "profile_image_url_https": "https://pbs.twimg.com/profile_images/626342341234819072/5UrXM-zC_normal.jpg", "profile_interstitial_type": "", "protected": false, "screen_name": "RoRobertb", "statuses_count": 89, "translator_type": "none", "url": "https://t.co/Q1yt8BbvJF", "verified": false, "withheld_in_countries": []}, "super_follow_eligible": false, "super_followed_by": false, "super_following": false}}}, "legacy": {"created_at": "Mon Oct 11 06:43:09 +0000 2021", "conversation_id_str": "1447348840164564994", "display_text_range": [79, 172], "entities": {"user_mentions": [{"id_str": "1087289365544534016", "name": "Iga \u015awi\u0105tek", "screen_name": "iga_swiatek", "indices": [0, 12]}, {"id_str": "17158140", "name": "wta", "screen_name": "WTA", "indices": [13, 17]}, {"id_str": "1252575285293260800", "name": "Xiaomi Polska", "screen_name": "XiaomiPL", "indices": [18, 27]}, {"id_str": "603617274", "name": "Grupa PZU", "screen_name": "GrupaPZU", "indices": [28, 37]}, {"id_str": "3111250452", "name": "ASICS Tennis", "screen_name": "ASICSTennis", "indices": [38, 50]}, {"id_str": "30017071", "name": "BNP Paribas Open", "screen_name": "BNPPARIBASOPEN", "indices": [51, 66]}, {"id_str": "64391043", "name": "Tecnifibre", "screen_name": "tecnifibre", "indices": [67, 78]}], "urls": [{"display_url": "facebook.com/sczpdnowytarg/", "expanded_url": "https://www.facebook.com/sczpdnowytarg/", "url": "https://t.co/uA5NhMfqHE", "indices": [149, 172]}], "hashtags": [], "symbols": []}, "favorite_count": 0, "favorited": false, "full_text": "@iga_swiatek @WTA @XiaomiPL @GrupaPZU @ASICSTennis @BNPPARIBASOPEN @tecnifibre \u015arodowiskowe Centrum Zdrowia Psychicznego w NT - robi\u0105 dobra robot\u0119 \ud83d\ude0a https://t.co/uA5NhMfqHE", "in_reply_to_screen_name": "iga_swiatek", "in_reply_to_status_id_str": "1447348840164564994", "in_reply_to_user_id_str": "1087289365544534016", "is_quote_status": false, "lang": "pl", "possibly_sensitive": false, "possibly_sensitive_editable": true, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "retweeted": false, "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "user_id_str": "2824465455", "id_str": "1447452694512287750"}}}
is_cursor True last_scrapped_zero False
need_guest_token True
run request RequestDetails(http_method=<HttpMethod.GET: 1>, url='https://twitter.com/i/api/graphql/kUnCMgMYZCR8GyRZz76IQg/TweetDetail', headers={'Authorization': 'Bearer AAAAAAAAAAAAAAAAAAAAANRILgAAAAAAnNwIzUejRCOuH5E6I8xnZz4puTs%3D1Zv7ttfk8LF81IUq16cHjhLTvJu4FA33AGWWjCpTnA', 'x-guest-token': '1448607906950168577'}, params={'variables': '{"focalTweetId": "1447348840164564994", "with_rux_injections": true, "includePromotedContent": true, "withCommunity": true, "withTweetQuoteCount": true, "withBirdwatchNotes": true, "withSuperFollowsUserFields": true, "withUserResults": true, "withBirdwatchPivots": true, "withReactionsMetadata": true, "withReactionsPerspective": true, "withSuperFollowsTweetFields": true, "withVoice": true, "cursor": "RwMAAPAOHBn2XISAuc2L-YKWKIKAvcmXuKiWKILAuJnE9akJANGjlcTVgpYohoCp9e-nJADgrN3LioeWKIbAvqnbroQSAPARssWD8YWWKJKAudmbuKCWKITAuM2s34OWKIDAvYWNmKoJAFC-gaSJmhsAULnxjZaDWgDxEb2Fvb-CliiIwL21y6qTliiQgL2BgOqwliiEgLLtvoqFfgAx-Yj6SADgo8Xi_6yWKI6ArNWuuYM2AFG5qYX1gqsA0Mn53qKWKIyAqu3e86wtAPAIsqGxiKiWKIzAubW-r4KWKI7Avcn-2Yt-AFCylbCNnRIAULjh2JqqxgDwB7nx1cyCliiKgLP16bqEliiAgLnVtuOZAGGAs8XbsYKQAEHJ_N-u6gBA6bKmgiQAQbPRwZEkAFG5udmIhC0AMLGx_-oA8ACAvenqkIWWKJDAsuGZ1YyQAEG5_anCWgBQs_XQraPqAFCy4Y7ur34AUL2duvmSXwFQufW-sYRsAFC9zcPgrWwAULOdyvqpPwBRuM3g9am9AEGh5JiCUQBA4fzmp7QAULn97sGC_ABQsrnZ_oUkAFGivavPg6sAQN2S4IVjAFGw1dKno5kAQM3S7oYXAVC-mfKWhD8AUKqx492WTQFQqPXWobAtAFG4hfGpqS0AQOWh8ZCQAFC5lfvvrCQAUayx_ICcbABA2dCjsYcAQrDhgP47ATD5r78gAVHAvt3ylRIAQbL1v7ndAUGy1dfyGwBRsKmDppMTAtDpyNKiliiSwL7ZyI2fKQFRvtnR56hRAEH5ppie1AFB-Z_SpgkAQbW3_pLUAUD1qKGvEgBRuYWxo4kgAUHZ3pqJgwFBoZ__iFICQbm5haWaAjHVi8L4AVGy9ZyLmikBMfnOnKwCULPB_qCicQFQs6241KuiAEC-tcHb4gJhwKiJyp6QJABC1cj3ruYBIbKBRAHhuJ3gjqKWKJTAvcWb04LHAtCl-4mVliglAhIVDgAA"}'}, timeout=20)
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:50.290061+02:00", "raw_value": {"__typename": "Tweet", "rest_id": "1447452879783174144", "has_birdwatch_notes": false, "core": {"user_results": {"result": {"__typename": "User", "id": "VXNlcjoxMjIwNjcyOTQ3NzA0Mjc5MDQw", "rest_id": "1220672947704279040", "affiliates_highlighted_label": {}, "legacy": {"created_at": "Fri Jan 24 11:41:36 +0000 2020", "default_profile": true, "default_profile_image": false, "description": "Lubi\u0119 RL9 i A-ha. Relaks: nurkowanie i szosa na rowerze. Poziom sarkazmu i autoironii prawdopodobnie powy\u017cej przeci\u0119tnej.", "entities": {"description": {"urls": []}}, "fast_followers_count": 0, "favourites_count": 24731, "followers_count": 292, "friends_count": 501, "has_custom_timelines": false, "is_translator": false, "listed_count": 1, "location": "Warszawa Radom Warka", "media_count": 983, "name": "Damien #UniaToMy", "normal_followers_count": 292, "pinned_tweet_ids_str": [], "profile_banner_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 70.53, "rgb": {"blue": 194, "green": 130, "red": 1}}, {"percentage": 19.62, "rgb": {"blue": 115, "green": 76, "red": 1}}, {"percentage": 7.27, "rgb": {"blue": 255, "green": 179, "red": 1}}, {"percentage": 1.14, "rgb": {"blue": 117, "green": 71, "red": 1}}, {"percentage": 1.05, "rgb": {"blue": 167, "green": 134, "red": 1}}]}}}}, "profile_banner_url": "https://pbs.twimg.com/profile_banners/1220672947704279040/1606516591", "profile_image_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 66.94, "rgb": {"blue": 59, "green": 31, "red": 14}}, {"percentage": 20.21, "rgb": {"blue": 87, "green": 40, "red": 11}}, {"percentage": 8.23, "rgb": {"blue": 176, "green": 177, "red": 182}}, {"percentage": 3.06, "rgb": {"blue": 102, "green": 97, "red": 88}}, {"percentage": 0.49, "rgb": {"blue": 69, "green": 27, "red": 10}}]}}}}, "profile_image_url_https": "https://pbs.twimg.com/profile_images/1281617226509045761/SD42GxKi_normal.jpg", "profile_interstitial_type": "", "protected": false, "screen_name": "Damien_1970", "statuses_count": 3458, "translator_type": "none", "verified": false, "withheld_in_countries": []}, "super_follow_eligible": false, "super_followed_by": false, "super_following": false}}}, "legacy": {"created_at": "Mon Oct 11 06:43:53 +0000 2021", "conversation_id_str": "1447348840164564994", "display_text_range": [79, 87], "entities": {"user_mentions": [{"id_str": "1087289365544534016", "name": "Iga \u015awi\u0105tek", "screen_name": "iga_swiatek", "indices": [0, 12]}, {"id_str": "17158140", "name": "wta", "screen_name": "WTA", "indices": [13, 17]}, {"id_str": "1252575285293260800", "name": "Xiaomi Polska", "screen_name": "XiaomiPL", "indices": [18, 27]}, {"id_str": "603617274", "name": "Grupa PZU", "screen_name": "GrupaPZU", "indices": [28, 37]}, {"id_str": "3111250452", "name": "ASICS Tennis", "screen_name": "ASICSTennis", "indices": [38, 50]}, {"id_str": "30017071", "name": "BNP Paribas Open", "screen_name": "BNPPARIBASOPEN", "indices": [51, 66]}, {"id_str": "64391043", "name": "Tecnifibre", "screen_name": "tecnifibre", "indices": [67, 78]}], "urls": [], "hashtags": [], "symbols": []}, "favorite_count": 1, "favorited": false, "full_text": "@iga_swiatek @WTA @XiaomiPL @GrupaPZU @ASICSTennis @BNPPARIBASOPEN @tecnifibre Super\ud83d\udc4d\ud83d\udc4d\ud83d\udc4d", "in_reply_to_screen_name": "iga_swiatek", "in_reply_to_status_id_str": "1447348840164564994", "in_reply_to_user_id_str": "1087289365544534016", "is_quote_status": false, "lang": "en", "quote_count": 0, "reply_count": 0, "retweet_count": 0, "retweeted": false, "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "user_id_str": "1220672947704279040", "id_str": "1447452879783174144"}}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:50.290304+02:00", "raw_value": {"__typename": "Tweet", "rest_id": "1447454273894297601", "has_birdwatch_notes": false, "core": {"user_results": {"result": {"__typename": "User", "id": "VXNlcjo4NDM5MDcyNTM5OTIzOTQ3NTQ=", "rest_id": "843907253992394754", "affiliates_highlighted_label": {}, "legacy": {"created_at": "Mon Mar 20 19:29:03 +0000 2017", "default_profile": true, "default_profile_image": false, "description": "\u201cThey say insanity is trying the same thing but expecting something new\u201d", "entities": {"description": {"urls": []}}, "fast_followers_count": 0, "favourites_count": 47835, "followers_count": 363, "friends_count": 1504, "has_custom_timelines": true, "is_translator": false, "listed_count": 0, "location": "England, United Kingdom", "media_count": 639, "name": "Charlie Bass \ud83d\udd30", "normal_followers_count": 363, "pinned_tweet_ids_str": ["1405578560455249921"], "profile_banner_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 70.86, "rgb": {"blue": 134, "green": 135, "red": 139}}, {"percentage": 24.2, "rgb": {"blue": 59, "green": 53, "red": 53}}, {"percentage": 1.4, "rgb": {"blue": 113, "green": 81, "red": 59}}, {"percentage": 0.84, "rgb": {"blue": 50, "green": 45, "red": 102}}, {"percentage": 0.65, "rgb": {"blue": 202, "green": 196, "red": 196}}]}}}}, "profile_banner_url": "https://pbs.twimg.com/profile_banners/843907253992394754/1632763172", "profile_image_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 30.68, "rgb": {"blue": 17, "green": 12, "red": 21}}, {"percentage": 24.36, "rgb": {"blue": 4, "green": 4, "red": 215}}, {"percentage": 12.89, "rgb": {"blue": 128, "green": 149, "red": 200}}, {"percentage": 5.74, "rgb": {"blue": 53, "green": 29, "red": 4}}, {"percentage": 5.32, "rgb": {"blue": 14, "green": 14, "red": 151}}]}}}}, "profile_image_url_https": "https://pbs.twimg.com/profile_images/1431620808712011785/plQSAN20_normal.jpg", "profile_interstitial_type": "", "protected": false, "screen_name": "CharlieBass18", "statuses_count": 9537, "translator_type": "none", "verified": false, "withheld_in_countries": []}, "super_follow_eligible": false, "super_followed_by": false, "super_following": false}}}, "legacy": {"created_at": "Mon Oct 11 06:49:25 +0000 2021", "conversation_id_str": "1447348840164564994", "display_text_range": [79, 81], "entities": {"user_mentions": [{"id_str": "1087289365544534016", "name": "Iga \u015awi\u0105tek", "screen_name": "iga_swiatek", "indices": [0, 12]}, {"id_str": "17158140", "name": "wta", "screen_name": "WTA", "indices": [13, 17]}, {"id_str": "1252575285293260800", "name": "Xiaomi Polska", "screen_name": "XiaomiPL", "indices": [18, 27]}, {"id_str": "603617274", "name": "Grupa PZU", "screen_name": "GrupaPZU", "indices": [28, 37]}, {"id_str": "3111250452", "name": "ASICS Tennis", "screen_name": "ASICSTennis", "indices": [38, 50]}, {"id_str": "30017071", "name": "BNP Paribas Open", "screen_name": "BNPPARIBASOPEN", "indices": [51, 66]}, {"id_str": "64391043", "name": "Tecnifibre", "screen_name": "tecnifibre", "indices": [67, 78]}], "urls": [], "hashtags": [], "symbols": []}, "favorite_count": 0, "favorited": false, "full_text": "@iga_swiatek @WTA @XiaomiPL @GrupaPZU @ASICSTennis @BNPPARIBASOPEN @tecnifibre \u2764\ufe0f", "in_reply_to_screen_name": "iga_swiatek", "in_reply_to_status_id_str": "1447348840164564994", "in_reply_to_user_id_str": "1087289365544534016", "is_quote_status": false, "lang": "und", "quote_count": 0, "reply_count": 0, "retweet_count": 0, "retweeted": false, "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "user_id_str": "843907253992394754", "id_str": "1447454273894297601"}}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:50.290484+02:00", "raw_value": {"__typename": "Tweet", "rest_id": "1447454545886523393", "has_birdwatch_notes": false, "core": {"user_results": {"result": {"__typename": "User", "id": "VXNlcjoxMTI0MjcyMTM1MTgxMDQxNjY3", "rest_id": "1124272135181041667", "affiliates_highlighted_label": {}, "legacy": {"created_at": "Fri May 03 11:18:59 +0000 2019", "default_profile": true, "default_profile_image": false, "description": "", "entities": {"description": {"urls": []}}, "fast_followers_count": 0, "favourites_count": 33307, "followers_count": 387, "friends_count": 583, "has_custom_timelines": true, "is_translator": false, "listed_count": 1, "location": "", "media_count": 123, "name": "Jolanta Moszczynska", "normal_followers_count": 387, "pinned_tweet_ids_str": [], "profile_image_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 81.26, "rgb": {"blue": 165, "green": 171, "red": 177}}, {"percentage": 11.32, "rgb": {"blue": 41, "green": 46, "red": 48}}, {"percentage": 0.16, "rgb": {"blue": 243, "green": 245, "red": 246}}]}}}}, "profile_image_url_https": "https://pbs.twimg.com/profile_images/1426629091688656897/L2Zwsi8T_normal.jpg", "profile_interstitial_type": "", "protected": false, "screen_name": "JolantaMoszczy3", "statuses_count": 11254, "translator_type": "none", "verified": false, "withheld_in_countries": []}, "super_follow_eligible": false, "super_followed_by": false, "super_following": false}}}, "legacy": {"created_at": "Mon Oct 11 06:50:30 +0000 2021", "conversation_id_str": "1447348840164564994", "display_text_range": [79, 85], "entities": {"user_mentions": [{"id_str": "1087289365544534016", "name": "Iga \u015awi\u0105tek", "screen_name": "iga_swiatek", "indices": [0, 12]}, {"id_str": "17158140", "name": "wta", "screen_name": "WTA", "indices": [13, 17]}, {"id_str": "1252575285293260800", "name": "Xiaomi Polska", "screen_name": "XiaomiPL", "indices": [18, 27]}, {"id_str": "603617274", "name": "Grupa PZU", "screen_name": "GrupaPZU", "indices": [28, 37]}, {"id_str": "3111250452", "name": "ASICS Tennis", "screen_name": "ASICSTennis", "indices": [38, 50]}, {"id_str": "30017071", "name": "BNP Paribas Open", "screen_name": "BNPPARIBASOPEN", "indices": [51, 66]}, {"id_str": "64391043", "name": "Tecnifibre", "screen_name": "tecnifibre", "indices": [67, 78]}], "urls": [], "hashtags": [], "symbols": []}, "favorite_count": 0, "favorited": false, "full_text": "@iga_swiatek @WTA @XiaomiPL @GrupaPZU @ASICSTennis @BNPPARIBASOPEN @tecnifibre ,\ud83d\udc4d\ud83d\udc4f\ud83d\udc9b\ud83d\udc9b\ud83d\udc9b", "in_reply_to_screen_name": "iga_swiatek", "in_reply_to_status_id_str": "1447348840164564994", "in_reply_to_user_id_str": "1087289365544534016", "is_quote_status": false, "lang": "und", "place": {"attributes": {}, "bounding_box": {"coordinates": [[[2.2922602, 48.7848914], [2.2922602, 48.8111344], [2.3263699, 48.8111344], [2.3263699, 48.7848914]]], "type": "Polygon"}, "contained_within": [], "country": "France", "country_code": "FR", "full_name": "Bagneux, France", "name": "Bagneux", "id": "495d47550fa73594", "place_type": "city", "url": "https://api.twitter.com/1.1/geo/id/495d47550fa73594.json"}, "quote_count": 0, "reply_count": 0, "retweet_count": 0, "retweeted": false, "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "user_id_str": "1124272135181041667", "id_str": "1447454545886523393"}}}
is_cursor True last_scrapped_zero False
need_guest_token True
run request RequestDetails(http_method=<HttpMethod.GET: 1>, url='https://twitter.com/i/api/graphql/kUnCMgMYZCR8GyRZz76IQg/TweetDetail', headers={'Authorization': 'Bearer AAAAAAAAAAAAAAAAAAAAANRILgAAAAAAnNwIzUejRCOuH5E6I8xnZz4puTs%3D1Zv7ttfk8LF81IUq16cHjhLTvJu4FA33AGWWjCpTnA', 'x-guest-token': '1448607906950168577'}, params={'variables': '{"focalTweetId": "1447348840164564994", "with_rux_injections": true, "includePromotedContent": true, "withCommunity": true, "withTweetQuoteCount": true, "withBirdwatchNotes": true, "withSuperFollowsUserFields": true, "withUserResults": true, "withBirdwatchPivots": true, "withReactionsMetadata": true, "withReactionsPerspective": true, "withSuperFollowsTweetFields": true, "withVoice": true, "cursor": "YgMAAPAXHBn2X4SAuc2L-YKWKICAvYm1rrGWKIKAvcmXuKiWKILAuJnE9akJAOCjlcTVgpYohoCp9e-ngiQA4Kzdy4qHliiGwL6p266EEgDwEbLFg_GFliiSgLnZm7igliiEwLjNrN-DliiAwL2FjZiqCQBQvoGkiZobAFC58Y2Wg1oA8RG9hb2_gpYoiMC9tcuqk5YokIC9gYDqsJYohICy7b6KhX4AMfmI-kgA4KPF4v-sliiOgKzVrrmDNgBRuamF9YKrANDJ-d6iliiMgKrt3vOsLQDwCLKhsYioliiMwLm1vq-CliiOwL3J_tmLfgBQspWwjZ0SAFC44diaqsYA4Lnx1cyCliiKgLP16bqEDgFAudW245kAYYCzxduxgpAAQcn8367qADHpsqYyAUGz0cGRJABRubnZiIQtAEGxsf-qTQEx6eqQvQDguYHI_7GWKJDAsuGZ1YyZAEG5_anCYwBQs_XQraPzAFCy4Y7ur4cAUL2duvmSaAFQufW-sYR1AFC9zcPgrXUAULOdyvqpPwBRuM3g9anGAEGh5JiCUQBA4fzmp70AULn97sGCBQFQsrnZ_oUkAFGivavPg7QAQN2S4IVjAFGw1dKno6IAQM3S7oYgAVC-mfKWhD8AUKqx492WVgFQqPXWobAtAFG4hfGpqS0AQOWh8ZCQAFC5lfvvrCQAUayx_ICcbABA2dCjsYcAQrDhgP5EATD5r78pAVHAvt3ylRIAQbL1v7nmAUGy1dfyGwBRsKmDppMgAUHBso-yJQLQ6cjSopYoksC-2ciNnzIBUb7Z0eeoWgBB-aaYnuYBQfmf0qYJAEG1t_6S5gFB9aihr0gAQYWxo4kpAUHZ3pqJlQFBoZ__iGQCQbm5haWsAjHVi8IKAlGy9ZyLmjIBMfnOnL4CULPB_qCiegFQs6241KurAEC-tcHb9AJhwKiJyp6QJABC1cj3rvgBIbKBTQHhuJ3gjqKWKJTAvcWb04LZAtCl-4mVliglAhIVDgAA"}'}, timeout=20)
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:50.801133+02:00", "raw_value": {"__typename": "Tweet", "rest_id": "1447454972673671170", "has_birdwatch_notes": false, "core": {"user_results": {"result": {"__typename": "User", "id": "VXNlcjoxMzkyNzMzNDkzNTA4MTE2NDgw", "rest_id": "1392733493508116480", "affiliates_highlighted_label": {}, "legacy": {"created_at": "Thu May 13 06:48:49 +0000 2021", "default_profile": true, "default_profile_image": false, "description": "Cryptocurrency enthusiast \ud83d\ude80\ud83d\ude80\ud83d\ude80 |\n\nAmateur football player \u26bd\ufe0f", "entities": {"description": {"urls": []}}, "fast_followers_count": 0, "favourites_count": 500, "followers_count": 21, "friends_count": 66, "has_custom_timelines": false, "is_translator": false, "listed_count": 0, "location": "", "media_count": 10, "name": "Piotr", "normal_followers_count": 21, "pinned_tweet_ids_str": [], "profile_banner_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 93.88, "rgb": {"blue": 25, "green": 14, "red": 5}}, {"percentage": 3.54, "rgb": {"blue": 83, "green": 50, "red": 6}}, {"percentage": 0.98, "rgb": {"blue": 75, "green": 81, "red": 119}}, {"percentage": 0.58, "rgb": {"blue": 57, "green": 123, "red": 201}}, {"percentage": 0.13, "rgb": {"blue": 50, "green": 138, "red": 245}}]}}}}, "profile_banner_url": "https://pbs.twimg.com/profile_banners/1392733493508116480/1622015412", "profile_image_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 33.05, "rgb": {"blue": 211, "green": 193, "red": 173}}, {"percentage": 22.15, "rgb": {"blue": 66, "green": 74, "red": 91}}, {"percentage": 14.04, "rgb": {"blue": 145, "green": 52, "red": 10}}, {"percentage": 7.78, "rgb": {"blue": 226, "green": 183, "red": 126}}, {"percentage": 6.77, "rgb": {"blue": 137, "green": 170, "red": 197}}]}}}}, "profile_image_url_https": "https://pbs.twimg.com/profile_images/1401480719906529283/djNS2pbW_normal.jpg", "profile_interstitial_type": "", "protected": false, "screen_name": "Piotr39366877", "statuses_count": 255, "translator_type": "none", "verified": false, "withheld_in_countries": []}, "super_follow_eligible": false, "super_followed_by": false, "super_following": false}}}, "legacy": {"created_at": "Mon Oct 11 06:52:12 +0000 2021", "conversation_id_str": "1447348840164564994", "display_text_range": [79, 130], "entities": {"user_mentions": [{"id_str": "1087289365544534016", "name": "Iga \u015awi\u0105tek", "screen_name": "iga_swiatek", "indices": [0, 12]}, {"id_str": "17158140", "name": "wta", "screen_name": "WTA", "indices": [13, 17]}, {"id_str": "1252575285293260800", "name": "Xiaomi Polska", "screen_name": "XiaomiPL", "indices": [18, 27]}, {"id_str": "603617274", "name": "Grupa PZU", "screen_name": "GrupaPZU", "indices": [28, 37]}, {"id_str": "3111250452", "name": "ASICS Tennis", "screen_name": "ASICSTennis", "indices": [38, 50]}, {"id_str": "30017071", "name": "BNP Paribas Open", "screen_name": "BNPPARIBASOPEN", "indices": [51, 66]}, {"id_str": "64391043", "name": "Tecnifibre", "screen_name": "tecnifibre", "indices": [67, 78]}], "urls": [], "hashtags": [], "symbols": []}, "favorite_count": 1, "favorited": false, "full_text": "@iga_swiatek @WTA @XiaomiPL @GrupaPZU @ASICSTennis @BNPPARIBASOPEN @tecnifibre Brawo, \u015bwietny mecz i postawa godna na\u015bladowania \ud83d\udc4d\ud83d\udc4f", "in_reply_to_screen_name": "iga_swiatek", "in_reply_to_status_id_str": "1447348840164564994", "in_reply_to_user_id_str": "1087289365544534016", "is_quote_status": false, "lang": "pl", "quote_count": 0, "reply_count": 0, "retweet_count": 0, "retweeted": false, "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "user_id_str": "1392733493508116480", "id_str": "1447454972673671170"}}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:50.801335+02:00", "raw_value": {"__typename": "Tweet", "rest_id": "1447457352219774977", "has_birdwatch_notes": false, "core": {"user_results": {"result": {"__typename": "User", "id": "VXNlcjoxMzgwNTcxNDA0MTk0NzU0NTY2", "rest_id": "1380571404194754566", "affiliates_highlighted_label": {}, "legacy": {"created_at": "Fri Apr 09 17:21:06 +0000 2021", "default_profile": true, "default_profile_image": true, "description": "Weso\u0142a Staruszka", "entities": {"description": {"urls": []}}, "fast_followers_count": 0, "favourites_count": 1, "followers_count": 0, "friends_count": 27, "has_custom_timelines": false, "is_translator": false, "listed_count": 0, "location": "", "media_count": 0, "name": "barbara", "normal_followers_count": 0, "pinned_tweet_ids_str": [], "profile_image_url_https": "https://abs.twimg.com/sticky/default_profile_images/default_profile_normal.png", "profile_interstitial_type": "", "protected": false, "screen_name": "barbara27416991", "statuses_count": 4, "translator_type": "none", "verified": false, "withheld_in_countries": []}, "super_follow_eligible": false, "super_followed_by": false, "super_following": false}}}, "legacy": {"created_at": "Mon Oct 11 07:01:39 +0000 2021", "conversation_id_str": "1447348840164564994", "display_text_range": [79, 86], "entities": {"user_mentions": [{"id_str": "1087289365544534016", "name": "Iga \u015awi\u0105tek", "screen_name": "iga_swiatek", "indices": [0, 12]}, {"id_str": "17158140", "name": "wta", "screen_name": "WTA", "indices": [13, 17]}, {"id_str": "1252575285293260800", "name": "Xiaomi Polska", "screen_name": "XiaomiPL", "indices": [18, 27]}, {"id_str": "603617274", "name": "Grupa PZU", "screen_name": "GrupaPZU", "indices": [28, 37]}, {"id_str": "3111250452", "name": "ASICS Tennis", "screen_name": "ASICSTennis", "indices": [38, 50]}, {"id_str": "30017071", "name": "BNP Paribas Open", "screen_name": "BNPPARIBASOPEN", "indices": [51, 66]}, {"id_str": "64391043", "name": "Tecnifibre", "screen_name": "tecnifibre", "indices": [67, 78]}], "urls": [], "hashtags": [], "symbols": []}, "favorite_count": 0, "favorited": false, "full_text": "@iga_swiatek @WTA @XiaomiPL @GrupaPZU @ASICSTennis @BNPPARIBASOPEN @tecnifibre Brawo \ud83d\ude0d", "in_reply_to_screen_name": "iga_swiatek", "in_reply_to_status_id_str": "1447348840164564994", "in_reply_to_user_id_str": "1087289365544534016", "is_quote_status": false, "lang": "pl", "quote_count": 0, "reply_count": 0, "retweet_count": 0, "retweeted": false, "source": "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>", "user_id_str": "1380571404194754566", "id_str": "1447457352219774977"}}}
{"object_type": "UserRaw", "download_datetime": "2021-10-14T13:13:50.801503+02:00", "raw_value": {"__typename": "Tweet", "rest_id": "1447458526079733761", "has_birdwatch_notes": false, "core": {"user_results": {"result": {"__typename": "User", "id": "VXNlcjo5NTMyMDExMzM5MjkwMjk2MzI=", "rest_id": "953201133929029632", "affiliates_highlighted_label": {}, "legacy": {"created_at": "Tue Jan 16 09:43:54 +0000 2018", "default_profile": true, "default_profile_image": false, "description": "Love travel, sun, sea, people", "entities": {"description": {"urls": []}}, "fast_followers_count": 0, "favourites_count": 58799, "followers_count": 354, "friends_count": 306, "has_custom_timelines": true, "is_translator": false, "listed_count": 6, "location": "", "media_count": 193, "name": "Kate", "normal_followers_count": 354, "pinned_tweet_ids_str": ["1100089645742858241"], "profile_image_extensions": {"mediaColor": {"r": {"ok": {"palette": [{"percentage": 53.63, "rgb": {"blue": 223, "green": 171, "red": 121}}, {"percentage": 26.76, "rgb": {"blue": 151, "green": 147, "red": 137}}, {"percentage": 10.43, "rgb": {"blue": 44, "green": 45, "red": 41}}, {"percentage": 2.44, "rgb": {"blue": 174, "green": 153, "red": 75}}, {"percentage": 1.43, "rgb": {"blue": 62, "green": 96, "red": 91}}]}}}}, "profile_image_url_https": "https://pbs.twimg.com/profile_images/953313546523283462/c5FexxoX_normal.jpg", "profile_interstitial_type": "", "protected": false, "screen_name": "KateBT15", "statuses_count": 13196, "translator_type": "none", "verified": false, "withheld_in_countries": []}, "super_follow_eligible": false, "super_followed_by": false, "super_following": false}}}, "legacy": {"created_at": "Mon Oct 11 07:06:19 +0000 2021", "conversation_id_str": "1447348840164564994", "display_text_range": [79, 82], "entities": {"user_mentions": [{"id_str": "1087289365544534016", "name": "Iga \u015awi\u0105tek", "screen_name": "iga_swiatek", "indices": [0, 12]}, {"id_str": "17158140", "name": "wta", "screen_name": "WTA", "indices": [13, 17]}, {"id_str": "1252575285293260800", "name": "Xiaomi Polska", "screen_name": "XiaomiPL", "indices": [18, 27]}, {"id_str": "603617274", "name": "Grupa PZU", "screen_name": "GrupaPZU", "indices": [28, 37]}, {"id_str": "3111250452", "name": "ASICS Tennis", "screen_name": "ASICSTennis", "indices": [38, 50]}, {"id_str": "30017071", "name": "BNP Paribas Open", "screen_name": "BNPPARIBASOPEN", "indices": [51, 66]}, {"id_str": "64391043", "name": "Tecnifibre", "screen_name": "tecnifibre", "indices": [67, 78]}], "urls": [], "hashtags": [], "symbols": []}, "favorite_count": 0, "favorited": false, "full_text": "@iga_swiatek @WTA @XiaomiPL @GrupaPZU @ASICSTennis @BNPPARIBASOPEN @tecnifibre \ud83d\udcaa\ud83d\udc9c\ud83c\udf08", "in_reply_to_screen_name": "iga_swiatek", "in_reply_to_status_id_str": "1447348840164564994", "in_reply_to_user_id_str": "1087289365544534016", "is_quote_status": false, "lang": "und", "quote_count": 0, "reply_count": 0, "retweet_count": 0, "retweeted": false, "source": "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>", "user_id_str": "953201133929029632", "id_str": "1447458526079733761"}}}
is_cursor True last_scrapped_zero False
need_guest_token True
run request RequestDetails(http_method=<HttpMethod.GET: 1>, url='https://twitter.com/i/api/graphql/kUnCMgMYZCR8GyRZz76IQg/TweetDetail', headers={'Authorization': 'Bearer AAAAAAAAAAAAAAAAAAAAANRILgAAAAAAnNwIzUejRCOuH5E6I8xnZz4puTs%3D1Zv7ttfk8LF81IUq16cHjhLTvJu4FA33AGWWjCpTnA', 'x-guest-token': '1448607906950168577'}, params={'variables': '{"focalTweetId": "1447348840164564994", "with_rux_injections": true, "includePromotedContent": true, "withCommunity": true, "withTweetQuoteCount": true, "withBirdwatchNotes": true, "withSuperFollowsUserFields": true, "withUserResults": true, "withBirdwatchPivots": true, "withReactionsMetadata": true, "withReactionsPerspective": true, "withSuperFollowsTweetFields": true, "withVoice": true, "cursor": "fQMAAPAXHBn2YoSAuc2L-YKWKICAvYm1rrGWKIKAvcmXuKiWKILAuJnE9akJAOCjlcTVgpYohoCp9e-ngiQA4Kzdy4qHliiGwL6p266EEgDwEbLFg_GFliiSgLnZm7igliiEwLjNrN-DliiAwL2FjZiqCQBQvoGkiZobAFC58Y2Wg1oA8RG9hb2_gpYoiMC9tcuqk5YokIC9gYDqsJYohICy7b6KhX4AMfmI-kgA4KPF4v-sliiOgKzVrrmDNgBRuamF9YKrANDJ-d6iliiMgKrt3vOsLQDwCLKhsYioliiMwLm1vq-CliiOwL3J_tmLLQBQsqnfsrOHAFCylbCNnRsAULjh2JqqzwDgufHVzIKWKIqAs_XpuoQXAUC51bbjogBhgLPF27GCmQBByfzfrvMAMemypjsBQbPRwZEkAFG5udmIhC0AQbGx_6pWATHp6pDGAOC5gcj_sZYokMCy4ZnVjKIAQbn9qcJjAFCz9dCto_wAULLhju6vhwBQvZ26-ZJxAVC59b6xhHUAUL3Nw-CtdQBBs53K-pUBUL6hifezSABRuM3g9anPAEGh5JiCWgBA4fzmp8YAULn97sGCFwFQsrnZ_oUkAFGivavPg70AQN2S4IVsAFGw1dKno6sAQM3S7oYyAVC-mfKWhD8AUKqx492WaAFQqPXWobAtAFG4hfGpqS0AQOWh8ZCZAFC5lfvvrCQAUayx_ICcbABA2dCjsYcAQrDhgP5NAUH5r7-utAAx3fKVEgBBsvW_ufgBQbLV1_IbAFGwqYOmkykBQcGyj7I3AtDpyNKiliiSwL7ZyI2fOwFRvtnR56haAEH5ppie-AFB-Z_SpgkAQbW3_pL4AUH1qKGvSABBhbGjibABQameqLI7AUHZ3pqJpwFBoZ__iH8CQbm5haXHAjHVi8IlAlGy9ZyLmjsBMfnOnNkCULPB_qCijAFQs6241Ku0AEC-tcHbDwNhwKiJyp6QJABC1cj3rgoCIbKBVgHhuJ3gjqKWKJTAvcWb04L0AtCl-4mVliglAhIVDgAA"}'}, timeout=20)
---------------------------------------------------------------------------
KeyboardInterrupt                         Traceback (most recent call last)
/var/folders/w8/659k99kn2x95s2mmypvk7rjr0000gn/T/ipykernel_82408/897969754.py in <module>
     47 try_search()
     48 try_user_scrap()
---> 49 try_tweet_by_id_scrap()

/var/folders/w8/659k99kn2x95s2mmypvk7rjr0000gn/T/ipykernel_82408/897969754.py in try_tweet_by_id_scrap()
     38     output_json = st.JsonLineFileRawOutput('output_raw_id.json')
     39     output_print = st.PrintRawOutput()
---> 40     st.TweetsByIdRunner(tweets_by_id_task=id_task,
     41                         raw_data_outputs=[output_print, output_json]).run()
     42     print('#####################')

~/anaconda3/envs/amc/lib/python3.9/site-packages/stweet/tweets_by_ids_runner/tweets_by_id_runner.py in run(self)
     50         """Main search_runner method."""
     51         while not self._is_end_of_scrapping():
---> 52             self._execute_next_tweets_request()
     53         return TweetsByIdResult(self.tweets_by_id_context.all_download_tweets_count)
     54 

~/anaconda3/envs/amc/lib/python3.9/site-packages/stweet/tweets_by_ids_runner/tweets_by_id_runner.py in _execute_next_tweets_request(self)
     62     def _execute_next_tweets_request(self):
     63         request_params = self._get_next_request_details()
---> 64         response = self.web_client.run_request(request_params)
     65         if response.is_success():
     66             parsed_list = get_all_tweets_from_json(response.text)

~/anaconda3/envs/amc/lib/python3.9/site-packages/stweet/http_request/web_client.py in run_request(self, requests_details)
     29     def run_request(self, requests_details: RequestDetails) -> RequestResponse:
     30         """Method process the request. Method wrap request with interceptors."""
---> 31         return _run_request_with_interceptors(requests_details, self._interceptors, self)
     32 
     33     @abstractmethod

~/anaconda3/envs/amc/lib/python3.9/site-packages/stweet/http_request/web_client.py in _run_request_with_interceptors(requests_details, next_interceptors, web_client)
     14         web_client: WebClient
     15 ) -> RequestResponse:
---> 16     return next_interceptors[0].intercept(requests_details, next_interceptors[1:], web_client) if len(
     17         next_interceptors) > 0 else web_client.run_clear_request(requests_details)
     18 

~/anaconda3/envs/amc/lib/python3.9/site-packages/stweet/twitter_api/twitter_auth_web_client_interceptor.py in intercept(self, requests_details, next_interceptors, web_client)
     81                 self._call_for_new_auth_request(web_client)
     82                 self._add_guest_token(requests_details, web_client)
---> 83             response = self.get_response(requests_details, next_interceptors, web_client)
     84             tries_counter = tries_counter + 1
     85 

~/anaconda3/envs/amc/lib/python3.9/site-packages/stweet/http_request/web_client.py in get_response(requests_details, next_interceptors, web_client)
     45         ) -> RequestResponse:
     46             """Method process request. If any interceptor passes method wrap request with this."""
---> 47             return _run_request_with_interceptors(requests_details, next_interceptors, web_client)
     48 
     49         @abstractmethod

~/anaconda3/envs/amc/lib/python3.9/site-packages/stweet/http_request/web_client.py in _run_request_with_interceptors(requests_details, next_interceptors, web_client)
     15 ) -> RequestResponse:
     16     return next_interceptors[0].intercept(requests_details, next_interceptors[1:], web_client) if len(
---> 17         next_interceptors) > 0 else web_client.run_clear_request(requests_details)
     18 
     19 

~/anaconda3/envs/amc/lib/python3.9/site-packages/stweet/http_request/requests/requests_web_client.py in run_clear_request(self, params)
     36         print(f'run request {params}')
     37         session = requests.Session()
---> 38         response = session.request(
     39             method=params.http_method.name,
     40             url=params.url,

~/anaconda3/envs/amc/lib/python3.9/site-packages/requests/sessions.py in request(self, method, url, params, data, headers, cookies, files, auth, timeout, allow_redirects, proxies, hooks, stream, verify, cert, json)
    540         }
    541         send_kwargs.update(settings)
--> 542         resp = self.send(prep, **send_kwargs)
    543 
    544         return resp

~/anaconda3/envs/amc/lib/python3.9/site-packages/requests/sessions.py in send(self, request, **kwargs)
    653 
    654         # Send the request
--> 655         r = adapter.send(request, **kwargs)
    656 
    657         # Total elapsed time of the request (approximately)

~/anaconda3/envs/amc/lib/python3.9/site-packages/requests/adapters.py in send(self, request, stream, timeout, verify, cert, proxies)
    437         try:
    438             if not chunked:
--> 439                 resp = conn.urlopen(
    440                     method=request.method,
    441                     url=url,

~/anaconda3/envs/amc/lib/python3.9/site-packages/urllib3/connectionpool.py in urlopen(self, method, url, body, headers, retries, redirect, assert_same_host, timeout, pool_timeout, release_conn, chunked, body_pos, **response_kw)
    697 
    698             # Make the request on the httplib connection object.
--> 699             httplib_response = self._make_request(
    700                 conn,
    701                 method,

~/anaconda3/envs/amc/lib/python3.9/site-packages/urllib3/connectionpool.py in _make_request(self, conn, method, url, timeout, chunked, **httplib_request_kw)
    443                     # Python 3 (including for exceptions like SystemExit).
    444                     # Otherwise it looks like a bug in the code.
--> 445                     six.raise_from(e, None)
    446         except (SocketTimeout, BaseSSLError, SocketError) as e:
    447             self._raise_timeout(err=e, url=url, timeout_value=read_timeout)

~/anaconda3/envs/amc/lib/python3.9/site-packages/urllib3/packages/six.py in raise_from(value, from_value)

~/anaconda3/envs/amc/lib/python3.9/site-packages/urllib3/connectionpool.py in _make_request(self, conn, method, url, timeout, chunked, **httplib_request_kw)
    438                 # Python 3
    439                 try:
--> 440                     httplib_response = conn.getresponse()
    441                 except BaseException as e:
    442                     # Remove the TypeError from the exception chain in

~/anaconda3/envs/amc/lib/python3.9/http/client.py in getresponse(self)
   1369         try:
   1370             try:
-> 1371                 response.begin()
   1372             except ConnectionError:
   1373                 self.close()

~/anaconda3/envs/amc/lib/python3.9/http/client.py in begin(self)
    317         # read until we get a non-100 response
    318         while True:
--> 319             version, status, reason = self._read_status()
    320             if status != CONTINUE:
    321                 break

~/anaconda3/envs/amc/lib/python3.9/http/client.py in _read_status(self)
    278 
    279     def _read_status(self):
--> 280         line = str(self.fp.readline(_MAXLINE + 1), "iso-8859-1")
    281         if len(line) > _MAXLINE:
    282             raise LineTooLong("status line")

~/anaconda3/envs/amc/lib/python3.9/socket.py in readinto(self, b)
    702         while True:
    703             try:
--> 704                 return self._sock.recv_into(b)
    705             except timeout:
    706                 self._timeout_occurred = True

~/anaconda3/envs/amc/lib/python3.9/ssl.py in recv_into(self, buffer, nbytes, flags)
   1239                   "non-zero flags not allowed in calls to recv_into() on %s" %
   1240                   self.__class__)
-> 1241             return self.read(nbytes, buffer)
   1242         else:
   1243             return super().recv_into(buffer, nbytes, flags)

~/anaconda3/envs/amc/lib/python3.9/ssl.py in read(self, len, buffer)
   1097         try:
   1098             if buffer is not None:
-> 1099                 return self._sslobj.read(len, buffer)
   1100             else:
   1101                 return self._sslobj.read(len)

KeyboardInterrupt: 

Plotly express

df.groupby([pd.Grouper(key='created_at', freq='1h')]).count()

Plotly GO

 fig = px.box(
    df[df.metric_name == "l2_ref_nodes_distance"],
    y="value",
    x="snapshot",
    points="all",
    hover_data=["run"],
    title="L2 Ref nodes distance on last epoch",
)
from typing import List, Optional, Tuple, Union

import numpy as np
import pandas as pd
import plotly
import plotly.graph_objs as go


def plot_loss_plot(
    df: pd.DataFrame,
    x_col: str,
    y_mean_col: Union[str, Tuple[str, str]],
    y_std_col: Union[str, Tuple[str, str]],
    title: str,
    cmap: Optional[List[str]] = plotly.colors.qualitative.Set1,
) -> go.Figure:
    def add_plotly_line(sub_df: pd.DataFrame, label: str, color: str):
        fig.add_scatter(
            name=label,
            x=sub_df[x_col],
            y=sub_df[y_mean_col],
            mode="lines",
            line=dict(color=color),
            legendgroup=label,
        )
        fig.add_scatter(
            name=label,
            x=sub_df[x_col],
            y=sub_df[y_mean_col] + sub_df[y_std_col],
            mode="lines",
            line=dict(width=0),
            showlegend=False,
            legendgroup=label,
            hoverinfo="skip",
        )
        fig.add_scatter(
            name=label,
            x=sub_df[x_col],
            y=sub_df[y_mean_col] - sub_df[y_std_col],
            line=dict(width=0),
            mode="lines",
            fillcolor=color.replace("rgb", "rgba").replace(")", ",0.3)"),
            fill="tonexty",
            showlegend=False,
            hoverinfo="skip",
            legendgroup=label,
            marker={"colorscale": "Viridis"},
        )

    fig = go.Figure()

    for snap_idx, snapshot_df in df.groupby(level=0):
        snap_idx_label = f"{snap_idx}"
        if not str(snap_idx).isnumeric():
            snap_idx_label = snap_idx
            snap_idx = 0
        snap_idx: int = int(snap_idx)
        snapshot_df = snapshot_df.reset_index()
        add_plotly_line(
            sub_df=snapshot_df,
            label=f"Snapshot {snap_idx_label}",
            color=cmap[snap_idx % len(cmap)],
        )

    epoch_num = df.reset_index().epoch.max()
    fig.update_layout(
        xaxis=dict(
            tickmode="array",
            tickvals=np.arange(0, epoch_num + 1),
            ticktext=np.arange(0, epoch_num + 1),
        ),
        yaxis_title="Loss",
        xaxis_title="Epoch",
        title=title,
        hovermode="x",
    )

    return fig